Skip to content

Commit c384c13

Browse files
authored
Update Dockerfile
1 parent a6de847 commit c384c13

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

{{cookiecutter.project_slug}}/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,13 @@ COPY tests tests
2222

2323
RUN poetry install
2424

25-
RUN poetry build --format=wheel
26-
RUN poetry export --only main -f requirements.txt --without-hashes --output requirements.txt
27-
2825
ARG TESTBUILD=True
2926
ENV TESTBUILD=$TESTBUILD
3027
RUN if [ "$TESTBUILD" = 'True' ]; then poe test; fi
3128

29+
RUN poetry build --format=wheel
30+
RUN poetry export --only main -f requirements.txt --without-hashes --output requirements.txt
31+
3232
ENTRYPOINT ["poe", "-q"]
3333
CMD ["test"]
3434

0 commit comments

Comments
 (0)