Compare commits

..

2 Commits

Author SHA1 Message Date
Alf Sebastian Houge e87a348b90 Merge pull request #66 from AlfHou/AlfHou-patch-1
Add autoconf dependency to dockerfile
2023-07-20 00:48:13 +02:00
Alf Sebastian Houge c15b22c71a Update Dockerfile 2023-07-20 00:47:52 +02:00
+1
View File
@@ -12,6 +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 npm install
COPY ./ui .
RUN npm run build