Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[docker] fix for devbox docker image root-user build #1811

Merged
merged 6 commits into from
Feb 15, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Re-enabling build and push for non root image
  • Loading branch information
mohsenari committed Feb 13, 2024
commit 172c3792728699191f5d9a33b850cf9773ce8ab8
16 changes: 8 additions & 8 deletions .github/workflows/docker-image-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@ jobs:
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}
# - name: Build and push default
# uses: docker/build-push-action@v4
# with:
# context: ./internal/devbox/generate/tmpl/
# file: ./internal/devbox/generate/tmpl/DevboxImageDockerfile
# push: true
# platforms: linux/amd64,linux/arm64
# tags: jetpackio/devbox:latest
- name: Build and push default
uses: docker/build-push-action@v4
with:
context: ./internal/devbox/generate/tmpl/
file: ./internal/devbox/generate/tmpl/DevboxImageDockerfile
push: true
platforms: linux/amd64,linux/arm64
tags: jetpackio/devbox:latest
- name: Build and push root user
uses: docker/build-push-action@v4
with:
Expand Down
Loading