🔨 Update dockerfile
This commit is contained in:
@ -1,14 +1,23 @@
|
||||
# Building Backend
|
||||
FROM golang:alpine as passport-server
|
||||
|
||||
RUN apk add nodejs npm
|
||||
|
||||
WORKDIR /source
|
||||
COPY . .
|
||||
|
||||
WORKDIR /source/web
|
||||
RUN npm install
|
||||
RUN npm run build
|
||||
|
||||
WORKDIR /source
|
||||
RUN CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -buildvcs -o /dist ./pkg/main.go
|
||||
|
||||
# Runtime
|
||||
FROM golang:alpine
|
||||
|
||||
COPY --from=passport-server /dist /passport/server
|
||||
COPY --from=passport-server /source/web/dist /passport/web
|
||||
|
||||
EXPOSE 8444
|
||||
|
||||
|
Reference in New Issue
Block a user