Compare commits

..

2 Commits

Author SHA1 Message Date
Alf Sebastian Houge
2eb78ab73c Merge pull request #67 from AlfHou/AlfHou-patch-1
Update Dockerfile
2023-07-20 00:57:24 +02:00
Alf Sebastian Houge
edf4647549 Update Dockerfile 2023-07-20 00:57:15 +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
RUN apk add --no-cache autoconf automake
RUN npm install
COPY ./ui .
RUN npm run build