mirror of
https://github.com/bensuperpc/infrastructure.git
synced 2024-11-12 21:21:36 +01:00
13 lines
200 B
Docker
13 lines
200 B
Docker
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"]
|