Update Dockerfile

This commit is contained in:
Paul Nameless 2021-04-27 08:23:25 +03:00
parent ca9ff63d81
commit 2507e0f975

View file

@ -1,5 +1,15 @@
FROM python:3.9.4-slim-buster
RUN pip install tg
WORKDIR /app
CMD tg
ENV PYTHONPATH=/app
RUN pip3 install --disable-pip-version-check --no-cache-dir poetry
COPY poetry.lock pyproject.toml /app/
RUN poetry config virtualenvs.create false && poetry install --no-interaction --no-ansi --no-dev
COPY . /app
CMD python3 -m tg