Compare commits

..

6 Commits

Author SHA1 Message Date
Alf Sebastian Houge
62dcf663ff Merge pull request #72 from AlfHou/AlfHou-patch-1
Update Dockerfile
2023-07-20 13:23:48 +02:00
Alf Sebastian Houge
b016dadb9d Update Dockerfile 2023-07-20 13:23:38 +02:00
Alf Sebastian Houge
b962565ed6 Merge pull request #71 from AlfHou/AlfHou-patch-1
Update Dockerfile
2023-07-20 13:13:27 +02:00
Alf Sebastian Houge
20b0e246fd Update Dockerfile 2023-07-20 13:13:11 +02:00
Alf Sebastian Houge
f1a7a053f4 Merge pull request #70 from AlfHou/AlfHou-patch-1
Update Dockerfile
2023-07-20 12:59:11 +02:00
Alf Sebastian Houge
359f35c53f Update Dockerfile 2023-07-20 12:59:01 +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
RUN apk add --no-cache autoconf automake build-base nasm libc6-compat
RUN npm install
COPY ./ui .
RUN npm run build