Skip to content

Commit

Permalink
feat: update docker version
Browse files Browse the repository at this point in the history
  • Loading branch information
sumeshi committed Nov 25, 2023
1 parent ca7f8d7 commit f510245
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# --- build stage ---
FROM python:3.9-bullseye AS builder
FROM python:3.11-bullseye AS builder

# configure poetry
RUN pip install poetry
Expand All @@ -13,7 +13,7 @@ RUN poetry build


# --- execute stage ---
FROM python:3.9-bullseye AS app
FROM python:3.11-bullseye AS app
WORKDIR /app
COPY --from=builder /app/dist/ /opt
RUN pip install --find-links=/opt evtx2es
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ services:
- .:/app
environment:
- ARGUMENTS="evtx2es -h"
command: ${ARGUMENTS}
command: ${ARGUMENTS}

0 comments on commit f510245

Please sign in to comment.