Files
es-bot/nft_svc/Dockerfile
Andrey Gumirov e1bd7234ed MVP
2022-05-01 00:57:58 +07:00

15 lines
239 B
Docker

FROM python:3.9
WORKDIR /app
COPY ./requirements.txt /app/requirements.txt
RUN pip install --no-cache-dir --upgrade -r /app/requirements.txt
COPY . /app
EXPOSE 5000
ENTRYPOINT [ "flask" ]
CMD ["run", "--host=0.0.0.0", "--port=5000"]