File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed
Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 2323 DOCKER_USERNAME : ${{ secrets.DOCKER_USERNAME }}
2424 run : |
2525 echo "Building and pushing docker image"
26- docker build -t $DOCKER_USERNAME/autoplan-python:latest .
26+ docker buildx build --platform=linux/amd64 -t $DOCKER_USERNAME/autoplan-python:latest .
2727 docker push $DOCKER_USERNAME/autoplan-python:latest
2828
2929 - name : Deploy to DigitalOcean
Original file line number Diff line number Diff line change @@ -10,8 +10,12 @@ RUN apt-get update && apt-get install -y \
1010 && rm -rf /var/lib/apt/lists/*
1111
1212# Download ODA File Converter AppImage (replace with the latest version)
13+ # RUN wget -O /tmp/ODAFileConverter.AppImage \
14+ # https://www.opendesign.com/guestfiles/get?filename=ODAFileConverter_QT6_lnxX64_8.3dll_26.8.AppImage
15+
1316RUN wget -O /tmp/ODAFileConverter.AppImage \
14- https://www.opendesign.com/guestfiles/get?filename=ODAFileConverter_QT6_lnxX64_8.3dll_26.8.AppImage
17+ https://s3.us-east-2.amazonaws.com/tendar.co/ODAFileConverter_QT6_lnxX64_8.3dll_26.10.AppImage
18+
1519
1620# Extract AppImage (avoids FUSE)
1721RUN chmod +x /tmp/ODAFileConverter.AppImage \
You can’t perform that action at this time.
0 commit comments