1
0
Fork 0
mirror of https://github.com/dancojocaru2000/foxbank.git synced 2025-02-22 17:09:35 +02:00
foxbank/server/Dockerfile
2021-12-06 01:34:00 +02:00

13 lines
No EOL
229 B
Docker

FROM python:3.10-slim
RUN pip3 install pipenv
WORKDIR /app
COPY Pipfile Pipfile.lock ./
RUN pipenv install
COPY . .
EXPOSE 5000
CMD [ "pipenv", "run", "gunicorn", "-b", "0.0.0.0:5000", "--access-logfile", "-", "server:app" ]