Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +4 -4
Dockerfile
CHANGED
|
@@ -5,10 +5,10 @@ WORKDIR /code
|
|
| 5 |
# Copy the Python code from the xsadcp repository
|
| 6 |
RUN apt-get update \
|
| 7 |
&& apt-get install -y wget tar \
|
| 8 |
-
&& wget https://github.com/tinaok/xsadcp/archive/refs/tags/0.
|
| 9 |
-
&& tar -xzvf 0.
|
| 10 |
-
&& mv xsadcp-0.
|
| 11 |
-
&& rm 0.
|
| 12 |
|
| 13 |
COPY . .
|
| 14 |
|
|
|
|
| 5 |
# Copy the Python code from the xsadcp repository
|
| 6 |
RUN apt-get update \
|
| 7 |
&& apt-get install -y wget tar \
|
| 8 |
+
&& wget https://github.com/tinaok/xsadcp/archive/refs/tags/0.11.tar.gz \
|
| 9 |
+
&& tar -xzvf 0.11.tar.gz \
|
| 10 |
+
&& mv xsadcp-0.11 xsadcp \
|
| 11 |
+
&& rm 0.11.tar.gz
|
| 12 |
|
| 13 |
COPY . .
|
| 14 |
|