1
0
Fork 0
mirror of https://github.com/dancojocaru2000/foxbank.git synced 2025-02-22 23:39:36 +02:00
foxbank/server/Dockerfile

13 lines
229 B
Text
Raw Permalink Normal View History

2021-11-30 14:13:57 +02:00
FROM python:3.10-slim
RUN pip3 install pipenv
WORKDIR /app
COPY Pipfile Pipfile.lock ./
RUN pipenv install
COPY . .
EXPOSE 5000
2021-12-06 01:34:00 +02:00
CMD [ "pipenv", "run", "gunicorn", "-b", "0.0.0.0:5000", "--access-logfile", "-", "server:app" ]