Compare commits

..

4 Commits

Author SHA1 Message Date
Alf Sebastian Houge
ea3423d32a Merge pull request #69 from AlfHou/AlfHou-patch-1
Update Dockerfile
2023-07-20 12:14:16 +02:00
Alf Sebastian Houge
6542a3bb28 Update Dockerfile 2023-07-20 12:14:05 +02:00
Alf Sebastian Houge
35d2f1ca0b Merge pull request #68 from AlfHou/AlfHou-patch-1 2023-07-20 01:15:31 +02:00
Alf Sebastian Houge
565d5701be Update Dockerfile to use Debian instead of alpine 2023-07-20 01:15:09 +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
RUN apk add --no-cache autoconf automake build-base
RUN npm install
COPY ./ui .
RUN npm run build