mirror of
https://github.com/dancojocaru2000/foxbank.git
synced 2025-02-22 17:09:35 +02:00
13 lines
No EOL
229 B
Docker
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" ] |