backend/Dockerfile
dm1sh 87e5a16a06
Fixed empty cover error
Updated deployment instructions
Switched to alpine python image
2023-09-17 16:40:26 +03:00

12 lines
197 B
Docker

FROM python:alpine
WORKDIR /srv
COPY ./requirements /srv/requirements
RUN pip install -r requirements/prod.txt
COPY ./app /srv/app
CMD uvicorn app.main:app --host 0.0.0.0 --port ${PORT:-8081}