Compare commits

...

6 Commits

Author SHA1 Message Date
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
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
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 -1
View File
@@ -9,7 +9,7 @@ RUN go mod download
COPY ./server .
RUN go build -o ./app ./main.go
FROM node:16-alpine as build-stage
FROM node:16-bookworm as build-stage
WORKDIR /app
COPY ./ui/package*.json ./
RUN npm install