Skip to content

Commit

Permalink
ci: Remove needless "/bin" directory from Docker image.
Browse files Browse the repository at this point in the history
* .github/workflows/docker-image.yml (jobs): Don't map /bin.
* README.md: Likewise with the example.
  • Loading branch information
mbakke committed May 21, 2021
1 parent 7c0af82 commit cfd319c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
- name: Pack Docker image
run: >
guix pack --fallback -f docker --save-provenance --root=mreg-docker.tar.gz
-S /bin=bin -S /app=app -S /etc/profile=etc/profile
-S /app=app -S /etc/profile=etc/profile
--entry-point=bin/mreg-wrapper
-m ./ci/manifest.scm
- name: Upload artifact
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ The Docker image can be reproduced locally by installing [GNU Guix](https://guix

```
guix time-machine -C ci/channels.scm -- pack -f docker \
-S /bin=bin -S /app=app -S /etc/profile=etc/profile \
-S /app=app -S /etc/profile=etc/profile \
--entry-point=bin/mreg-wrapper \
-m ci/manifest.scm
```
Expand Down

0 comments on commit cfd319c

Please sign in to comment.