mirror of
https://github.com/Luzifer/password.git
synced 2024-12-20 12:51:17 +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>"
|
COPY . /go/src/github.com/Luzifer/password
|
||||||
|
|
||||||
ADD . /go/src/github.com/Luzifer/password
|
|
||||||
WORKDIR /go/src/github.com/Luzifer/password
|
WORKDIR /go/src/github.com/Luzifer/password
|
||||||
|
|
||||||
RUN set -ex \
|
RUN set -ex \
|
||||||
&& apk add --update git ca-certificates \
|
&& apk add --update git \
|
||||||
&& go install -ldflags "-X main.version=$(git describe --tags || git rev-parse --short HEAD || echo dev)" \
|
&& go install -ldflags "-X main.version=$(git describe --tags || git rev-parse --short HEAD || echo dev)"
|
||||||
&& apk del --purge git
|
|
||||||
|
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
|
EXPOSE 3000
|
||||||
|
|
||||||
ENTRYPOINT ["/go/bin/password"]
|
ENTRYPOINT ["/usr/local/bin/password"]
|
||||||
CMD ["--"]
|
CMD ["--"]
|
||||||
|
|
||||||
|
# vim: set ft=Dockerfile:
|
||||||
|
|
Loading…
Reference in a new issue