Skip to content

Commit

Permalink
Merge pull request #60 from aviolaris/1.11.x
Browse files Browse the repository at this point in the history
1.11.x
  • Loading branch information
aviolaris authored Oct 9, 2023
2 parents 719d3fd + f799aa5 commit 16e8da2
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
FROM python:alpine3.17 AS build-stage
FROM python:3.11.6-alpine3.18 AS build-stage
LABEL maintainer="Andreas Violaris"
COPY app /app
WORKDIR /app
RUN pip install --upgrade pip
RUN pip install --no-cache-dir -r requirements.txt

FROM python:alpine3.17
FROM python:3.11.6-alpine3.18
ENV PYTHONPATH=/usr/local/lib/python3.11/site-packages
COPY --from=build-stage $PYTHONPATH $PYTHONPATH
COPY --from=build-stage /app /app
Expand Down
2 changes: 1 addition & 1 deletion app/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
# Upload folder
UPLOAD_FOLDER = os.path.join(os.getcwd(), 'uploads')
# Current version
CURRENT_VERSION = 'v1.11.12'
CURRENT_VERSION = 'v1.11.13'
# Update needed
UPDATE_NEEDED = bool(update_needed(CURRENT_VERSION, get_latest_version()))

Expand Down
4 changes: 2 additions & 2 deletions app/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Flask==2.3.3
flask-paginate==2022.1.8
Flask==3.0.0
flask-paginate==2023.10.8
Flask-Session==0.5.0
gunicorn==21.2.0
requests==2.31.0

0 comments on commit 16e8da2

Please sign in to comment.