mirror of
https://github.com/Luzifer/go-holidays.git
synced 2024-12-25 13:21: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
|
||||
|
||||
ADD . /go/src/github.com/Luzifer/go-holidays
|
||||
WORKDIR /go/src/github.com/Luzifer/go-holidays
|
||||
COPY . /go/src/github.com/Luzifer/go-holidays
|
||||
WORKDIR /go/src/github.com/Luzifer/go-holidays/cmd/holiday-api
|
||||
|
||||
RUN set -ex \
|
||||
&& apk add --update git \
|
||||
&& go install -ldflags "-X main.version=$(git describe --tags || git rev-parse --short HEAD || echo dev)" \
|
||||
github.com/Luzifer/go-holidays/cmd/holiday-api
|
||||
&& go install \
|
||||
-ldflags "-X main.version=$(git describe --tags --always || echo dev)" \
|
||||
-mod=readonly
|
||||
|
||||
FROM alpine:latest
|
||||
|
||||
LABEL maintainer "Knut Ahlers <knut@ahlers.me>"
|
||||
|
||||
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/
|
||||
|
||||
|
|
Loading…
Reference in a new issue