Skip to content

Commit

Permalink
--no-dev instead of --nodev
Browse files Browse the repository at this point in the history
  • Loading branch information
imnotjames committed Mar 19, 2020
1 parent f295d96 commit 2acf6ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ COPY poetry.lock pyproject.toml ./

COPY ./notion_docs_sync/ ./notion_docs_sync/

RUN if [ "$APP_ENVIRONMENT" = "production" ]; then poetry install --nodev; else poetry install; fi
RUN if [ "$APP_ENVIRONMENT" = "production" ]; then poetry install --no-dev; else poetry install; fi

ENTRYPOINT [ "notion-docs-sync"]
CMD []

0 comments on commit 2acf6ab

Please sign in to comment.