mirror of
https://github.com/Luzifer/password.git
synced 2024-11-09 09:50:07 +00:00
Update Dockerfile
Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
parent
78cab7a245
commit
37128b5f38
1 changed files with 18 additions and 8 deletions
26
Dockerfile
26
Dockerfile
|
@ -1,16 +1,26 @@
|
|||
FROM golang:alpine
|
||||
FROM golang:alpine as builder
|
||||
|
||||
LABEL maintainer "Knut Ahlers <knut@ahlers.me>"
|
||||
|
||||
ADD . /go/src/github.com/Luzifer/password
|
||||
COPY . /go/src/github.com/Luzifer/password
|
||||
WORKDIR /go/src/github.com/Luzifer/password
|
||||
|
||||
RUN set -ex \
|
||||
&& apk add --update git ca-certificates \
|
||||
&& go install -ldflags "-X main.version=$(git describe --tags || git rev-parse --short HEAD || echo dev)" \
|
||||
&& apk del --purge git
|
||||
&& apk add --update git \
|
||||
&& go install -ldflags "-X main.version=$(git describe --tags || git rev-parse --short HEAD || echo dev)"
|
||||
|
||||
FROM alpine:latest
|
||||
|
||||
LABEL maintainer "Knut Ahlers <knut@ahlers.me>"
|
||||
|
||||
RUN set -ex \
|
||||
&& apk --no-cache add \
|
||||
ca-certificates \
|
||||
mailcap
|
||||
|
||||
COPY --from=builder /go/bin/password /usr/local/bin/password
|
||||
|
||||
EXPOSE 3000
|
||||
|
||||
ENTRYPOINT ["/go/bin/password"]
|
||||
ENTRYPOINT ["/usr/local/bin/password"]
|
||||
CMD ["--"]
|
||||
|
||||
# vim: set ft=Dockerfile:
|
||||
|
|
Loading…
Reference in a new issue