1
0
mirror of https://github.com/Luzifer/password.git synced 2024-09-16 17:08:27 +00:00
password/Dockerfile
Knut Ahlers 827e433c69
Fix missing JS build in Dockerfile
Signed-off-by: Knut Ahlers <knut@ahlers.me>
2022-06-28 00:36:33 +02:00

37 lines
708 B
Docker

FROM golang:alpine as builder
COPY . /src/github.com/Luzifer/password
WORKDIR /src/github.com/Luzifer/password
RUN set -ex \
&& apk add --no-cache \
build-base \
git \
nodejs \
npm \
&& make compile_js
WORKDIR /src/github.com/Luzifer/password/cmd/password
RUN set -ex \
&& 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 ["/usr/local/bin/password"]
CMD ["--"]
# vim: set ft=Dockerfile: