Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,9 @@ ENV PYTHONUNBUFFERED=1

# Export via poetry and install via pip requirements
COPY pyproject.toml poetry.lock ./
RUN python -m pip install pip --upgrade
RUN python -m pip install poetry
RUN poetry config virtualenvs.create false
RUN poetry config virtualenvs.create true
RUN poetry install --no-dev

WORKDIR /app
Expand Down