Skip to content

Commit fcdc971

Browse files
authored
Merge pull request #78 from lbetz/add-some-packages
feat: add some package to do releases
2 parents fcb6d84 + 075d503 commit fcdc971

File tree

2 files changed

+13
-0
lines changed

2 files changed

+13
-0
lines changed

Dockerfile

+2
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,8 @@ LABEL org.label-schema.maintainer="Voxpupuli Team <[email protected]>" \
8080

8181
RUN apk update \
8282
&& apk upgrade \
83+
&& apk add openssh-client \
84+
&& apk add gpg \
8385
&& apk add jq \
8486
&& apk add yamllint \
8587
&& apk add git \

README.md

+11
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,17 @@ Running spec tests:
4545
docker run -it --rm -v $(pwd):/repo --entrypoint onceover ghcr.io/voxpupuli/voxbox:8 run spec
4646
```
4747

48+
Doing, e.g. a release:
49+
50+
```shell
51+
docker run -it --rm \
52+
-v $(pwd):/repo \
53+
-v ~/.gitconfig:/etc/gitconfig \
54+
-v ~/.ssh:/root/.ssh \
55+
-v ${SSH_AUTH_SOCK}:${SSH_AUTH_SOCK} -e SSH_AUTH_SOCK="${SSH_AUTH_SOCK}" \
56+
ghcr.io/voxpupuli/voxbox:8 release
57+
```
58+
4859
Other commands are:
4960

5061
| Command | What it does |

0 commit comments

Comments
 (0)