File tree Expand file tree Collapse file tree 2 files changed +12
-0
lines changed Expand file tree Collapse file tree 2 files changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -2,6 +2,12 @@ FROM kernai/refinery-parent-images:v1.17.2-common
2
2
3
3
WORKDIR /program
4
4
5
+ RUN apt-get update && apt-get install -y curl libc6-dev zlib1g gcc --no-install-recommends
6
+
7
+ RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
8
+
9
+ ENV PATH="/root/.cargo/bin:${PATH}"
10
+
5
11
COPY requirements.txt .
6
12
7
13
RUN pip3 install --no-cache-dir -r requirements.txt
Original file line number Diff line number Diff line change @@ -4,6 +4,12 @@ WORKDIR /app
4
4
5
5
VOLUME ["/app" ]
6
6
7
+ RUN apt-get update && apt-get install -y curl libc6-dev zlib1g gcc --no-install-recommends
8
+
9
+ RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
10
+
11
+ ENV PATH="/root/.cargo/bin:${PATH}"
12
+
7
13
COPY requirements*.txt .
8
14
9
15
RUN pip3 install --no-cache-dir -r requirements-dev.txt
You can’t perform that action at this time.
0 commit comments