Skip to content

Commit

Permalink
fix: dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
vaggeliskls committed Jan 16, 2024
1 parent f0d469c commit f7fd093
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
1 change: 0 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ jobs:
run: |
docker build -f Dockerfile -t skopeo-build .
docker run -v ./bin:/skopeo/bin -t skopeo-build
[ -f ./bin/skopeo ] && mv ./bin/skopeo ./bin/skopeo.linux.amd64
shell: bash

- name: Upload release attachment
Expand Down
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ CMD /bin/bash -c \
make bin/skopeo.darwin.amd64 && \
make bin/skopeo.darwin.arm64 && \
make bin/skopeo.windows.amd64.exe && \
make bin/skopeo.windows.arm64.exe

make bin/skopeo.windows.arm64.exe && \
[ -f ./bin/skopeo ] && mv ./bin/skopeo ./bin/skopeo.linux.amd64
# docker build -f Dockerfile -t skopeo-build .
# docker run -v bin:/skopeo/bin -t skopeo-build
# docker run -v ./bin:/skopeo/bin -t skopeo-build

0 comments on commit f7fd093

Please sign in to comment.