mirror of
https://github.com/bensuperpc/infrastructure.git
synced 2025-06-14 06:29:24 +02:00
12
flask/Dockerfile
Normal file
12
flask/Dockerfile
Normal file
@ -0,0 +1,12 @@
|
||||
ARG DOCKER_IMAGE=python:3.11-buster
|
||||
FROM $DOCKER_IMAGE
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
COPY requirements.txt requirements.txt
|
||||
|
||||
RUN pip install --no-cache-dir -r requirements.txt
|
||||
|
||||
EXPOSE 5000
|
||||
|
||||
CMD ["uwsgi", "app.ini"]
|
Reference in New Issue
Block a user