Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 2 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,6 @@ RUN apk add --no-cache --upgrade --no-progress \
&& for i in $(seq 500 1999); do echo "user:x:$i:$i::/home:/sbin/nologin"; done >> /etc/passwd \
&& apk del .usermod

WORKDIR /workspace

CMD ["/bin/bash"]
14 changes: 14 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,20 @@ A minimal Alpine based image with:
- gnupg
- pass

Pulling image from GitHub Container Registry:

```bash
docker pull ghcr.io/ilyes512/utils:latest
```

Interactive shell and mounting the current directory:

```bash
docker run -it -v $(pwd):/workspace --rm ghcr.io/ilyes512/utils:latest /bin/bash
```

Default workspace: `/workspace`

## Task

This project uses [Task](https://taskfile.dev) (an task runner / build tool).
Expand Down