We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a6de847 commit c384c13Copy full SHA for c384c13
{{cookiecutter.project_slug}}/Dockerfile
@@ -22,13 +22,13 @@ COPY tests tests
22
23
RUN poetry install
24
25
-RUN poetry build --format=wheel
26
-RUN poetry export --only main -f requirements.txt --without-hashes --output requirements.txt
27
-
28
ARG TESTBUILD=True
29
ENV TESTBUILD=$TESTBUILD
30
RUN if [ "$TESTBUILD" = 'True' ]; then poe test; fi
31
+RUN poetry build --format=wheel
+RUN poetry export --only main -f requirements.txt --without-hashes --output requirements.txt
+
32
ENTRYPOINT ["poe", "-q"]
33
CMD ["test"]
34
0 commit comments