Merge pull request #72 from AlfHou/AlfHou-patch-1

Update Dockerfile
This commit is contained in:
Alf Sebastian Houge
2023-07-20 13:23:48 +02:00
committed by GitHub

View File

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