Skip to content

Commit 1b36d65

Browse files
committed
install from tar.gz instead of wheel
Signed-off-by: iripiri <[email protected]>
1 parent a0d768f commit 1b36d65

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ ENV PYTHONUNBUFFERED=1 \
1919
PYTHONDONTWRITEBYTECODE=1 \
2020
PIP_NO_CACHE_DIR=1
2121

22-
COPY --from=builder /app/dist/*.whl /tmp/
23-
RUN pip install /tmp/*.whl && rm -rf /tmp/*
22+
COPY --from=builder /app/dist/*.tar.gz /tmp/
23+
RUN pip install /tmp/*.tar.gz && rm -rf /tmp/*
2424

2525
COPY etc/*.json etc/*.yaml /etc/villas/controller/
2626
COPY villas-controller.service /etc/systemd/system/

0 commit comments

Comments
 (0)