Skip to content

Commit

Permalink
Merge pull request #15 from pablon/fix-docker-compose/flask-werkzeug-…
Browse files Browse the repository at this point in the history
…compat

[test-code] Fix docker compose/flask werkzeug compat
  • Loading branch information
giga-a authored Apr 15, 2024
2 parents 00b8aba + 914a3a5 commit c271251
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion docker-compose-dev.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
version: '2.1'
services:
service:
build:
Expand Down
2 changes: 1 addition & 1 deletion webinterface-Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM ubuntu:latest
ENV DEBIAN_FRONTEND noninteractive
RUN apt-get update && apt-get install -y curl python3 python3-pip
RUN pip3 install requests flask==2.2.3 werkzeug gunicorn flask_mongoengine==0.9 flask_admin flask_login flask_bcrypt pyOpenSSL Flask-Markdown psutil gevent python-dateutil redis pymongo==3.12.1 Flask-Json
RUN pip3 install requests flask==2.2.5 werkzeug==2.3.3 gunicorn flask_mongoengine==0.9 flask_admin flask_login flask_bcrypt pyOpenSSL Flask-Markdown psutil gevent python-dateutil redis pymongo==3.12.1 Flask-Json
WORKDIR /analyzer
ADD ./ .
RUN python3 initializer.py --key
Expand Down

0 comments on commit c271251

Please sign in to comment.