From 7ecce5493b2825c200cde81c5e3b8d4d6005e12c Mon Sep 17 00:00:00 2001 From: Knut Ahlers Date: Mon, 27 Jun 2022 21:56:08 +0200 Subject: [PATCH] Update Dockerfile Signed-off-by: Knut Ahlers --- Dockerfile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index d8b9e16..7a67c32 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,9 +4,13 @@ COPY . /src/github.com/Luzifer/password WORKDIR /src/github.com/Luzifer/password/cmd/password RUN set -ex \ - && apk add --update git \ + && apk add --no-cache \ + git \ + nodejs \ + npm \ && go install -ldflags "-X main.version=$(git describe --tags || git rev-parse --short HEAD || echo dev)" + FROM alpine:latest LABEL maintainer "Knut Ahlers "