2023-09-18 23:23:13 +08:00
|
|
|
# Build frontend dist.
|
2023-12-15 21:46:11 +08:00
|
|
|
FROM node:20-alpine AS frontend
|
2023-09-18 23:23:13 +08:00
|
|
|
WORKDIR /frontend-build
|
|
|
|
|
2023-10-08 01:06:18 +08:00
|
|
|
COPY . .
|
2023-09-18 23:23:13 +08:00
|
|
|
|
2023-10-08 01:06:18 +08:00
|
|
|
WORKDIR /frontend-build/web
|
2023-09-17 20:55:05 +08:00
|
|
|
|
2024-02-05 20:42:01 +08:00
|
|
|
RUN corepack enable && pnpm i --frozen-lockfile
|
2021-12-12 11:43:27 +08:00
|
|
|
|
2023-04-16 00:47:40 +08:00
|
|
|
RUN pnpm build
|
2021-12-12 11:43:27 +08:00
|
|
|
|
|
|
|
# Build backend exec file.
|
2024-09-21 17:36:53 +08:00
|
|
|
FROM golang:1.23-alpine AS backend
|
2021-12-12 11:43:27 +08:00
|
|
|
WORKDIR /backend-build
|
|
|
|
|
|
|
|
COPY . .
|
2024-05-01 10:28:32 +08:00
|
|
|
COPY --from=frontend /frontend-build/web/dist /backend-build/server/router/frontend/dist
|
2021-12-12 11:43:27 +08:00
|
|
|
|
2024-09-21 17:33:01 +08:00
|
|
|
RUN CGO_ENABLED=0 go build -o memos ./bin/memos/main.go
|
2021-12-12 11:43:27 +08:00
|
|
|
|
|
|
|
# Make workspace with above generated files.
|
2024-09-21 17:33:01 +08:00
|
|
|
FROM alpine:latest AS monolithic
|
2021-12-12 11:43:27 +08:00
|
|
|
WORKDIR /usr/local/memos
|
|
|
|
|
2024-09-21 17:33:01 +08:00
|
|
|
RUN apk add --no-cache tzdata
|
2023-04-08 17:57:00 +08:00
|
|
|
ENV TZ="UTC"
|
|
|
|
|
2021-12-12 11:43:27 +08:00
|
|
|
COPY --from=backend /backend-build/memos /usr/local/memos/
|
|
|
|
|
2023-03-09 08:33:33 +08:00
|
|
|
EXPOSE 5230
|
|
|
|
|
2022-02-05 13:04:06 +08:00
|
|
|
# Directory to store the data, which can be referenced as the mounting point.
|
2024-09-21 17:33:01 +08:00
|
|
|
RUN mkdir -p /var/opt/memos
|
2023-05-23 18:50:17 +08:00
|
|
|
VOLUME /var/opt/memos
|
2021-12-12 11:43:27 +08:00
|
|
|
|
2023-05-24 20:08:47 +08:00
|
|
|
ENV MEMOS_MODE="prod"
|
|
|
|
ENV MEMOS_PORT="5230"
|
|
|
|
|
|
|
|
ENTRYPOINT ["./memos"]
|