mirror of
https://github.com/dancojocaru2000/foxbank.git
synced 2025-02-23 12:29:35 +02:00
13 lines
204 B
Text
13 lines
204 B
Text
|
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", "server:app" ]
|