mirror of
https://github.com/Luzifer/password.git
synced 2024-12-20 04:41:17 +00:00
Fix missing JS build in Dockerfile
Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
parent
0ccfdd30af
commit
827e433c69
1 changed files with 7 additions and 1 deletions
|
@ -1,13 +1,19 @@
|
||||||
FROM golang:alpine as builder
|
FROM golang:alpine as builder
|
||||||
|
|
||||||
COPY . /src/github.com/Luzifer/password
|
COPY . /src/github.com/Luzifer/password
|
||||||
WORKDIR /src/github.com/Luzifer/password/cmd/password
|
WORKDIR /src/github.com/Luzifer/password
|
||||||
|
|
||||||
RUN set -ex \
|
RUN set -ex \
|
||||||
&& apk add --no-cache \
|
&& apk add --no-cache \
|
||||||
|
build-base \
|
||||||
git \
|
git \
|
||||||
nodejs \
|
nodejs \
|
||||||
npm \
|
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)"
|
&& go install -ldflags "-X main.version=$(git describe --tags || git rev-parse --short HEAD || echo dev)"
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue