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 a0d768f commit 1b36d65Copy full SHA for 1b36d65
Dockerfile
@@ -19,8 +19,8 @@ ENV PYTHONUNBUFFERED=1 \
19
PYTHONDONTWRITEBYTECODE=1 \
20
PIP_NO_CACHE_DIR=1
21
22
-COPY --from=builder /app/dist/*.whl /tmp/
23
-RUN pip install /tmp/*.whl && rm -rf /tmp/*
+COPY --from=builder /app/dist/*.tar.gz /tmp/
+RUN pip install /tmp/*.tar.gz && rm -rf /tmp/*
24
25
COPY etc/*.json etc/*.yaml /etc/villas/controller/
26
COPY villas-controller.service /etc/systemd/system/
0 commit comments