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