-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
48 lines (38 loc) · 1.69 KB
/
Dockerfile
File metadata and controls
48 lines (38 loc) · 1.69 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
## Build final releasepost docker image
# We on purpose release artifacts created by goreleaser
# located in the dist directory
## Goreleaser requires the "--platform" to handle multi-platform builds
# hadolint ignore=DL3029
FROM --platform=${BUILDPLATFORM} debian:stable-slim
LABEL maintainer="Olivier Vernin <me@olblak.com>"
# Dynamic labels are defined from the goreleaser configuration ".goreleaser.yaml"
LABEL org.opencontainers.image.authors="Olivier Vernin<me@olblak.com>"
LABEL org.opencontainers.image.url="https://github.com/updatecli/releasepost"
LABEL org.opencontainers.image.documentation="https://github.com/updatecli/releasepost"
LABEL org.opencontainers.image.licenses="APACHEV2"
LABEL org.opencontainers.image.title="Releasepost"
LABEL org.opencontainers.image.description="Re-post release notes"
LABEL org.opencontainers.image.base.name="ghcr.io/updatecli/releasepost"
LABEL org.opencontainers.image.source https://github.com/updatecli/releasepost
# /tmp is used by updatecli to store git repository so it's better
# to define a volume
VOLUME /tmp
## The latest version of these "generic" package is always required
# hadolint ignore=DL3008
RUN apt-get update && \
apt-get install --yes --no-install-recommends \
ca-certificates \
curl \
tar \
unzip \
wget &&\
apt-get clean && \
rm -rf /var/lib/apt/lists/*
# Available files only matched against the binaries generated by the builds section
# and packages generated by the nfpms section.
COPY releasepost /usr/local/bin/releasepost
RUN useradd -d /home/releasepost -U -u 1000 -m releasepost
USER releasepost
WORKDIR /home/releasepost
ENTRYPOINT [ "/usr/local/bin/releasepost" ]
CMD ["help"]