Skip to content

Commit

Permalink
Merge pull request #69 from AlfHou/AlfHou-patch-1
Browse files Browse the repository at this point in the history
Update Dockerfile
  • Loading branch information
AlfHou authored Jul 20, 2023
2 parents 35d2f1c + 6542a3b commit ea3423d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,10 @@ RUN go mod download
COPY ./server .
RUN go build -o ./app ./main.go

FROM node:16-bookworm as build-stage
FROM node:16-alpine as build-stage
WORKDIR /app
COPY ./ui/package*.json ./
RUN apk add --no-cache autoconf automake build-base
RUN npm install
COPY ./ui .
RUN npm run build
Expand Down

0 comments on commit ea3423d

Please sign in to comment.