We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 28d5b43 commit c480ba3Copy full SHA for c480ba3
Dockerfile
@@ -7,6 +7,7 @@ ENV DEBIAN_FRONTEND noninteractive
7
RUN apt-get update && \
8
apt-get install -y curl && \
9
apt-get -y clean && \
10
+ apt-get install -y pipx build-essential git vim && \
11
rm -rf /var/lib/apt/lists/*
12
13
# Download and install FRP client into /usr/local/bin.
@@ -26,13 +27,13 @@ RUN set -ex; \
26
27
rm -rf /tmp/frp /tmp/frp.tar.gz
28
29
-RUN apt install -y pipx build-essential git vim
30
RUN pipx install poetry
31
32
# Install requirements
33
34
COPY pyproject.toml .
35
COPY poetry.lock .
36
+ENV PATH="/root/.local/bin:${PATH}"
37
RUN poetry install
38
39
ADD /ex_app/cs[s] /ex_app/css
0 commit comments