Compare commits

..

2 Commits

Author SHA1 Message Date
Alf Sebastian Houge
9bcc2cc2a0 Merge pull request #73 from AlfHou/AlfHou-patch-1
Update Dockerfile
2023-07-20 14:05:20 +02:00
Alf Sebastian Houge
d3d8cc268d Update Dockerfile 2023-07-20 14:05:07 +02:00

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 libc6-compat
RUN apk add --no-cache autoconf automake build-base nasm libc6-compat python3 py3-pip make g++
RUN npm install
COPY ./ui .
RUN npm run build