chore: upgrade deps version (#2181)

This commit is contained in:
boojack
2023-08-27 16:08:39 +08:00
committed by GitHub
parent a5b3fb2a6a
commit c2aeec20b7
8 changed files with 848 additions and 604 deletions

View File

@@ -1,5 +1,5 @@
# Build frontend dist.
FROM node:18.12.1-alpine3.16 AS frontend
FROM node:18-alpine AS frontend
WORKDIR /frontend-build
COPY ./web/package.json ./web/pnpm-lock.yaml ./
@@ -11,7 +11,7 @@ COPY ./web/ .
RUN pnpm build
# Build backend exec file.
FROM golang:1.19.3-alpine3.16 AS backend
FROM golang:1.21-alpine AS backend
WORKDIR /backend-build
COPY . .
@@ -20,7 +20,7 @@ COPY --from=frontend /frontend-build/dist ./server/dist
RUN CGO_ENABLED=0 go build -o memos ./main.go
# Make workspace with above generated files.
FROM alpine:3.16 AS monolithic
FROM alpine:latest AS monolithic
WORKDIR /usr/local/memos
RUN apk add --no-cache tzdata