Compare commits

..

2 commits

Author SHA1 Message Date
Gitouche 0f5ddbed71 ntfy : bump alpine version 2023-10-26 12:28:22 +02:00
Gitouche 7e7d340ab8 ntfy : hadolint Containerfile 2023-10-26 12:26:31 +02:00

View file

@ -1,36 +1,28 @@
#Build stage #Build stage
FROM docker.io/library/golang:1.20-alpine3.17 AS build-env FROM docker.io/library/golang:1.20-alpine3.18 AS build-env
ARG NTFY_VERSION ARG NTFY_VERSION
#Build deps RUN apk --no-cache add build-base git nodejs npm upx py3-pip \
RUN apk --no-cache add build-base git nodejs npm upx py3-pip && go install github.com/goreleaser/goreleaser@latest \
&& git clone --depth=1 -b "${NTFY_VERSION}" https://github.com/binwiederhier/ntfy.git /ntfybuild
#Install gorealeaser WORKDIR /ntfybuild
RUN go install github.com/goreleaser/goreleaser@latest RUN make web && make docs && make cli-linux-amd64
#Setup repo
RUN git clone --depth=1 -b "${NTFY_VERSION}" https://github.com/binwiederhier/ntfy.git
#Build
RUN cd ntfy && make web && make docs && make cli-linux-amd64
FROM docker.io/library/alpine:3.17 FROM docker.io/library/alpine:3.17
LABEL maintainer="contact@garbaye.fr" LABEL maintainer="contact@garbaye.fr"
EXPOSE 80/tcp EXPOSE 80/tcp
RUN apk add --no-cache tzdata && \ RUN apk add --no-cache tzdata \
adduser \ && adduser -S -H -D ntfy \
-S -H -D \ && mkdir /etc/ntfy \
ntfy && \ && chown ntfy:nogroup /etc/ntfy \
mkdir /etc/ntfy && \ && mkdir /var/cache/ntfy \
chown ntfy:nogroup /etc/ntfy && \ && chown ntfy:nogroup /var/cache/ntfy
mkdir /var/cache/ntfy && \
chown ntfy:nogroup /var/cache/ntfy
USER ntfy USER ntfy
ENTRYPOINT ["ntfy"] ENTRYPOINT ["ntfy"]
COPY --from=build-env /go/ntfy/dist/ntfy_linux_amd64_linux_amd64_v1/ntfy /usr/bin/ntfy COPY --from=build-env /ntfybuild/dist/ntfy_linux_amd64_linux_amd64_v1/ntfy /usr/bin/ntfy