2021-12-12 06:43:27 +03:00
|
|
|
# Build frontend dist.
|
|
|
|
FROM node:14.18.2-alpine3.14 AS frontend
|
|
|
|
WORKDIR /frontend-build
|
|
|
|
|
|
|
|
COPY ./web/ .
|
|
|
|
|
|
|
|
RUN yarn
|
|
|
|
RUN yarn build
|
|
|
|
|
|
|
|
# Build backend exec file.
|
|
|
|
FROM golang:1.16.12-alpine3.15 AS backend
|
|
|
|
WORKDIR /backend-build
|
|
|
|
|
|
|
|
RUN apk --no-cache add gcc musl-dev
|
|
|
|
|
|
|
|
COPY . .
|
|
|
|
|
|
|
|
RUN go build \
|
|
|
|
-o memos \
|
2022-02-03 10:32:03 +03:00
|
|
|
./bin/server/main.go
|
2021-12-12 06:43:27 +03:00
|
|
|
|
|
|
|
# Make workspace with above generated files.
|
|
|
|
FROM alpine:3.14.3 AS monolithic
|
|
|
|
WORKDIR /usr/local/memos
|
|
|
|
|
|
|
|
COPY --from=backend /backend-build/memos /usr/local/memos/
|
|
|
|
COPY --from=frontend /frontend-build/dist /usr/local/memos/web/dist
|
|
|
|
|
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-02-05 08:04:06 +03:00
|
|
|
CMD ["-mode", "release", "-port", "8080", "-data", "/var/opt/memos"]
|
|
|
|
|
|
|
|
ENTRYPOINT ["./memos"]
|