File tree 5 files changed +12
-42
lines changed
5 files changed +12
-42
lines changed Original file line number Diff line number Diff line change 80
80
image : plugins/docker
81
81
settings :
82
82
registry : registry.dev.kern.ai
83
- dockerfile : Dockerfile.arm64
84
83
username :
85
84
from_secret : docker_username
86
85
password :
@@ -145,7 +144,6 @@ steps:
145
144
- name : build and publish
146
145
image : plugins/docker
147
146
settings :
148
- dockerfile : Dockerfile.arm64
149
147
username :
150
148
from_secret : dockerhub_username
151
149
password :
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
Load Diff This file was deleted.
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
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments