Spaces:
Build error
Build error
Commit ·
d79bda8
1
Parent(s): 3d92d63
Update Dockerfile
Browse files- Dockerfile +8 -0
Dockerfile
CHANGED
|
@@ -9,6 +9,14 @@ RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
|
|
| 9 |
|
| 10 |
COPY . .
|
| 11 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 12 |
RUN echo "deb [trusted=yes] https://apt.fury.io/kurtosis-tech/ /" | tee /etc/apt/sources.list.d/kurtosis.list
|
| 13 |
RUN apt update
|
| 14 |
RUN apt install kurtosis-cli
|
|
|
|
| 9 |
|
| 10 |
COPY . .
|
| 11 |
|
| 12 |
+
RUN apt-get update && \
|
| 13 |
+
apt-get install -y apt-transport-https ca-certificates curl software-properties-common && \
|
| 14 |
+
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | apt-key add - && \
|
| 15 |
+
add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" && \
|
| 16 |
+
apt-get update && \
|
| 17 |
+
apt-get install -y docker-ce
|
| 18 |
+
|
| 19 |
+
|
| 20 |
RUN echo "deb [trusted=yes] https://apt.fury.io/kurtosis-tech/ /" | tee /etc/apt/sources.list.d/kurtosis.list
|
| 21 |
RUN apt update
|
| 22 |
RUN apt install kurtosis-cli
|