Update Dockerfile to use Debian instead of alpine
This commit is contained in:
committed by
GitHub
parent
2eb78ab73c
commit
565d5701be
@@ -9,10 +9,9 @@ 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 apk add --no-cache autoconf automake
|
||||
RUN npm install
|
||||
COPY ./ui .
|
||||
RUN npm run build
|
||||
|
||||
Reference in New Issue
Block a user