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 c3ca425 commit 9ae18b5Copy full SHA for 9ae18b5
docker/Dockerfile.clightning
@@ -69,16 +69,8 @@ RUN mkdir lnprototest
69
70
COPY . lnprototest
71
72
-# Remove distutils-installed packages that conflict with Poetry (e.g., blinker)
73
-RUN apt-get -qq update && \
74
- apt-get -qq remove -y python3-blinker && \
75
- apt-get -qq autoremove -y
76
-
77
-# Install Poetry dependencies without prompts, directly into the system environment
78
RUN cd lnprototest && \
79
- poetry config virtualenvs.create false && \
80
- poetry install --no-interaction
81
+ poetry install
82
RUN cd lnprototest && ls -lha
83
84
-CMD ["./lnprototest/docker/entrypoint.sh"]
+CMD ["poetry", "run", "./docker/entrypoint.sh"]
0 commit comments