Skip to content

Commit

Permalink
fixing syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
EliseCastle23 committed Jul 29, 2024
1 parent 4769d24 commit 2f5c267
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,13 @@ USER gen3

RUN python -m venv /venv

COPY poetry.lock pyproject.toml alembic.ini /${appname} /migrations/
COPY poetry.lock pyproject.toml alembic.ini /${appname}/

RUN pip install poetry && \
poetry install -vv --only main --no-interaction

COPY --chown=gen3:gen3 ./src /$appname
COPY --chown=gen3:gen3 ./migrations /$appname/migrations
COPY --chown=gen3:gen3 ./deployment/wsgi/wsgi.py /$appname/wsgi.py

# Run poetry again so this app itself gets installed too
Expand Down

0 comments on commit 2f5c267

Please sign in to comment.