We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 111b90e commit a13e524Copy full SHA for a13e524
.github/workflows/build-and-push.yml
@@ -150,9 +150,11 @@ jobs:
150
with:
151
username: ${{ secrets.DOCKERHUB_USERNAME }}
152
password: ${{ secrets.DOCKERHUB_TOKEN }}
153
- - name: Docker Buildx (build-and-push)
+ - name: Build Web
154
run: |
155
- sudo sync && echo 3 | sudo tee /proc/sys/vm/drop_caches && free -m
156
docker buildx build --target web-build --output type=local,dest=./web-build . -f installer/Dockerfile
157
rm -rf ui/* && cp -r ./web-build/ui/* ui/
+ - name: Docker Buildx (build-and-push)
158
+ run: |
159
+ sudo sync && echo 3 | sudo tee /proc/sys/vm/drop_caches && free -m
160
docker buildx build --output "type=image,push=true" ${{ steps.prepare.outputs.buildx_args }} -f installer/Dockerfile
0 commit comments