Skip installation of dev requirements

This commit is contained in:
Fabian Müller 2022-05-10 03:00:56 +02:00
parent 27cb982931
commit b991d60e01

View File

@ -12,7 +12,7 @@ COPY poetry.lock pyproject.toml /app/
WORKDIR /app/
RUN pip install -U poetry && \
poetry install
poetry install --no-dev
COPY main.py /app/
COPY static/ /app/static/