unicheckbot/apps/Dockerfile-api
kiriharu 8a45f26d2e
Update Dockerfile-api
use python:3.9.4-slim-buster img
2021-06-02 23:51:32 +03:00

18 lines
475 B
Plaintext

FROM python:3.9.4-slim-buster
WORKDIR /usr/src/app
ENV PYTHONDONTWRITEBYTECODE 1
ENV PYTHONUNBUFFERED 1
RUN apt update && apt install gcc -y
COPY . .
WORKDIR api/api
RUN pip install --upgrade pip; pip install poetry; poetry config virtualenvs.create false; poetry install; poetry add uwsgi
CMD poetry shell; uwsgi --master \
--single-interpreter \
--workers $WORKERS \
--gevent $ASYNC_CORES \
--protocol http \
--socket 0.0.0.0:$APP_PORT \
--module patched:app