Skip to content

Commit

Permalink
Merge pull request #44 from epandurski/master
Browse files Browse the repository at this point in the history
Update base image and packages versions
  • Loading branch information
epandurski authored Jul 17, 2024
2 parents 5d86e77 + 75a9573 commit 77e7c1a
Show file tree
Hide file tree
Showing 3 changed files with 72 additions and 72 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM python:3.11.5-alpine3.18 AS venv-image
FROM python:3.11.9-alpine3.20 AS venv-image
WORKDIR /usr/src/app

ENV POETRY_VERSION="1.5.1"
ENV POETRY_VERSION="1.8.3"
RUN apk add --no-cache \
file \
make \
Expand All @@ -27,7 +27,7 @@ RUN poetry config virtualenvs.create false --local \

# This is the final app image. Starting from a clean alpine image, it
# copies over the previously created virtual environment.
FROM python:3.11.5-alpine3.18 AS app-image
FROM python:3.11.9-alpine3.20 AS app-image
ARG APP_NAME=swpt_stomp

ENV APP_NAME=$APP_NAME
Expand Down
Loading

0 comments on commit 77e7c1a

Please sign in to comment.