Update Dockerfile

This commit is contained in:
Alf Sebastian Houge
2023-07-20 13:13:11 +02:00
committed by GitHub
parent f1a7a053f4
commit 20b0e246fd

View File

@@ -11,9 +11,8 @@ RUN go build -o ./app ./main.go
FROM node:16-alpine as build-stage
WORKDIR /app
USER node
COPY ./ui/package*.json ./
RUN apk add --no-cache autoconf automake build-base
RUN apk add --no-cache autoconf automake build-base nasm
RUN npm install
COPY ./ui .
RUN npm run build