Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Docker image #136

Merged
merged 1 commit into from
Oct 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ RUN npm install
RUN npm run build

# Build dependencies
FROM python:3.11.7-alpine3.19@sha256:6aa46819a8ff43850e52f5ac59545b50c6d37ebd3430080421582af362afec97 AS build
FROM python:3.11.10-alpine3.20@sha256:f089154eb2546de825151b9340a60d39e2ba986ab17aaffca14301b0b961a11c AS build
RUN apk update && apk upgrade

# Install Kerberos client and gcc for Python wrapper
Expand All @@ -24,7 +24,7 @@ RUN pip install --upgrade pip setuptools wheel
RUN pip install -r requirements.txt

# Create image for deployment
FROM python:3.11.7-alpine3.19@sha256:6aa46819a8ff43850e52f5ac59545b50c6d37ebd3430080421582af362afec97 AS backend
FROM python:3.11.10-alpine3.20@sha256:f089154eb2546de825151b9340a60d39e2ba986ab17aaffca14301b0b961a11c AS backend
RUN apk update && apk upgrade
RUN pip install --upgrade pip setuptools wheel

Expand Down
18 changes: 9 additions & 9 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
Flask==2.3.3
Flask-Cors==4.0.0
Flask==3.0.3
Flask-Cors==5.0.0
Flask-RESTful==0.3.10
paramiko==3.4.0
paramiko==3.5.0
pymongo==3.13.0
requests==2.31.0
PyJWT==2.8.0
Authlib==1.2.1
gunicorn==21.2.0
requests==2.32.3
PyJWT==2.9.0
Authlib==1.3.2
gunicorn==23.0.0
pylint>=2.17.5
gssapi==1.8.3
pyasn1==0.5.1
gssapi==1.9.0
pyasn1==0.6.1
Loading