Browse Source

Docker greift direkt auf uwsgi-image zu, Dockerfile wird nicht mehr gebraucht

Global Cube 2 years ago
parent
commit
6d6a49623d
2 changed files with 2 additions and 11 deletions
  1. 1 10
      Dockerfile
  2. 1 1
      docker-compose.yml

+ 1 - 10
Dockerfile

@@ -1,10 +1 @@
-FROM tiangolo/uwsgi-nginx-flask:python3.8-alpine
-
-RUN apk --update add bash nano
-
-ENV STATIC_URL /static
-ENV STATIC_PATH /var/www/app/static
-
-COPY ./requirements.txt /var/www/requirements.txt
-
-RUN pip install -r /var/www/requirements.txt
+FROM tiangolo/uwsgi-nginx-flask:python3.10

+ 1 - 1
docker-compose.yml

@@ -1,7 +1,7 @@
 version: "3"
 services:
   flask-default:
-    build: .
+    image: tiangolo/uwsgi-nginx-flask:python3.10
     container_name: flask-default
     privileged: true
     ports: