Update Dockerfile
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
|
@@ -12,7 +12,7 @@ RUN apk add --no-cache \
|
|
| 12 |
|
| 13 |
# Download and unzip the GitHub repository
|
| 14 |
RUN set -e; \
|
| 15 |
-
DOWNLOAD_URL="https://github.com/
|
| 16 |
echo "Downloading from: $DOWNLOAD_URL"; \
|
| 17 |
wget "$DOWNLOAD_URL" -O /tmp/webssh.zip || (echo "Download failed. URL may be incorrect." && exit 1); \
|
| 18 |
unzip /tmp/webssh.zip -d /tmp && \
|
|
|
|
| 12 |
|
| 13 |
# Download and unzip the GitHub repository
|
| 14 |
RUN set -e; \
|
| 15 |
+
DOWNLOAD_URL="https://github.com/huashengdun/webssh/archive/refs/heads/master.zip"; \
|
| 16 |
echo "Downloading from: $DOWNLOAD_URL"; \
|
| 17 |
wget "$DOWNLOAD_URL" -O /tmp/webssh.zip || (echo "Download failed. URL may be incorrect." && exit 1); \
|
| 18 |
unzip /tmp/webssh.zip -d /tmp && \
|