Compare commits

..

No commits in common. "73f4ee47cb12a0fb74b73349254991f28c66e05e" and "8bf026963602b7221a4e80e3885d2146748877fe" have entirely different histories.

4 changed files with 4 additions and 18 deletions

View file

@ -35,7 +35,7 @@ jobs:
- name: Build and push multi-arch Docker images - name: Build and push multi-arch Docker images
run: | run: |
docker buildx build \ docker buildx build \
--platform linux/amd64 \ --platform linux/amd64,linux/arm64 \
--tag $REPO_HOST/$REPO_PATH:${{ github.sha }} \ --tag $REPO_HOST/$REPO_PATH:${{ github.sha }} \
--tag $REPO_HOST/$REPO_PATH:nightly \ --tag $REPO_HOST/$REPO_PATH:nightly \
--push \ --push \

View file

@ -34,7 +34,7 @@ jobs:
- name: Build and push Docker images - name: Build and push Docker images
run: | run: |
docker buildx build \ docker buildx build \
--platform linux/amd64 \ --platform linux/amd64,linux/arm64 \
--tag $REPO_HOST/$REPO_PATH:$TAG \ --tag $REPO_HOST/$REPO_PATH:$TAG \
--tag $REPO_HOST/$REPO_PATH:latest \ --tag $REPO_HOST/$REPO_PATH:latest \
--push \ --push \

View file

@ -2,7 +2,7 @@
FROM git.merith.xyz/gns3/base-vnc:latest FROM git.merith.xyz/gns3/base-vnc:latest
## START setting your image here ## START setting your image here
RUN apk add --no-cache wine # RUN apk add --no-cache firefox-esr
## STOP setting up your image here ## STOP setting up your image here
# DO NOT REMOVE AND DO NOT ADD AN "ENTRYPOINT" COMMAND # DO NOT REMOVE AND DO NOT ADD AN "ENTRYPOINT" COMMAND

View file

@ -1,17 +1,3 @@
#!/bin/bash #!/bin/bash
# Wait until internet is available xterm
while ! ping -c1 1.1.1.1 &>/dev/null; do
echo "Waiting for internet connection..."
sleep 5
done
if [ ! -f "/data/winbox64.exe" ]; then
echo "Winbox executable not found in /data. Downloading..."
mkdir -p /data
wget -O /data/winbox64.exe https://download.mikrotik.com/routeros/winbox/3.42/winbox64.exe
else
echo "Winbox executable found in /data."
fi
wine64 /tmp/winbox64.exe