aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbozo.kopic <bozo@kopic.xyz>2021-12-22 03:32:43 +0100
committerbozo.kopic <bozo@kopic.xyz>2021-12-22 03:32:43 +0100
commit923e73a50320792bbedb945b45c54dab12d44708 (patch)
tree29fb18b19f8f46bcdb61ef6cd94c127fb1a28dd5
parent7dedbce91b8cb6cfbb1571f2c6dccb968d93351d (diff)
heroku docker bugfix
-rw-r--r--Dockerfile.heroku2
1 files changed, 1 insertions, 1 deletions
diff --git a/Dockerfile.heroku b/Dockerfile.heroku
index 52c3882..8dfc3fb 100644
--- a/Dockerfile.heroku
+++ b/Dockerfile.heroku
@@ -13,6 +13,6 @@ RUN apt install -qy nodejs yarnpkg git && \
FROM opcut-base as opcut-run
WORKDIR /opcut
-COPY --from=opcut-build /opcut/build/dist/*.whl .
+COPY --from=opcut-build /opcut/build/py/dist/*.whl .
RUN pip install -qq *.whl && \
rm *.whl