mirror of
https://github.com/Luzifer/go-holidays.git
synced 2024-12-25 21:31:17 +00:00
Update Dockerfile for readonly modues
Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
parent
d7e6c75ab3
commit
05bd7c9e19
1 changed files with 7 additions and 5 deletions
12
Dockerfile
12
Dockerfile
|
@ -1,19 +1,21 @@
|
||||||
FROM golang:alpine as builder
|
FROM golang:alpine as builder
|
||||||
|
|
||||||
ADD . /go/src/github.com/Luzifer/go-holidays
|
COPY . /go/src/github.com/Luzifer/go-holidays
|
||||||
WORKDIR /go/src/github.com/Luzifer/go-holidays
|
WORKDIR /go/src/github.com/Luzifer/go-holidays/cmd/holiday-api
|
||||||
|
|
||||||
RUN set -ex \
|
RUN set -ex \
|
||||||
&& apk add --update git \
|
&& apk add --update git \
|
||||||
&& go install -ldflags "-X main.version=$(git describe --tags || git rev-parse --short HEAD || echo dev)" \
|
&& go install \
|
||||||
github.com/Luzifer/go-holidays/cmd/holiday-api
|
-ldflags "-X main.version=$(git describe --tags --always || echo dev)" \
|
||||||
|
-mod=readonly
|
||||||
|
|
||||||
FROM alpine:latest
|
FROM alpine:latest
|
||||||
|
|
||||||
LABEL maintainer "Knut Ahlers <knut@ahlers.me>"
|
LABEL maintainer "Knut Ahlers <knut@ahlers.me>"
|
||||||
|
|
||||||
RUN set -ex \
|
RUN set -ex \
|
||||||
&& apk --no-cache add ca-certificates
|
&& apk --no-cache add \
|
||||||
|
ca-certificates
|
||||||
|
|
||||||
COPY --from=builder /go/bin/holiday-api /usr/local/bin/
|
COPY --from=builder /go/bin/holiday-api /usr/local/bin/
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue