memos/Dockerfile

32 lines
709 B
Docker
Raw Normal View History

2021-12-12 06:43:27 +03:00
# Build frontend dist.
FROM node:16.15.0-alpine AS frontend
2021-12-12 06:43:27 +03:00
WORKDIR /frontend-build
COPY ./web/ .
RUN yarn
RUN yarn build
# Build backend exec file.
FROM golang:1.18.3-alpine3.16 AS backend
2021-12-12 06:43:27 +03:00
WORKDIR /backend-build
2022-07-03 17:45:10 +03:00
RUN apk update
RUN apk --no-cache add gcc musl-dev
2021-12-12 06:43:27 +03:00
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
2022-08-22 15:52:30 +03:00
RUN go build -o memos ./bin/server/main.go
2021-12-12 06:43:27 +03:00
# Make workspace with above generated files.
2022-07-03 16:15:43 +03:00
FROM alpine:3.16.0 AS monolithic
2021-12-12 06:43:27 +03:00
WORKDIR /usr/local/memos
COPY --from=backend /backend-build/memos /usr/local/memos/
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
2021-12-12 06:43:27 +03:00
2022-08-22 15:52:30 +03:00
ENTRYPOINT ["./memos", "--mode", "prod", "--port", "5230"]