mirror of
https://github.com/writefreely/writefreely
synced 2024-11-10 11:24:13 +00:00
42 lines
1.2 KiB
Docker
42 lines
1.2 KiB
Docker
# Build image
|
|
FROM golang:1.19-alpine as build
|
|
|
|
LABEL org.opencontainers.image.source=https://github.com/writefreely/writefreely
|
|
LABEL org.opencontainers.image.description="WriteFreely is a clean, minimalist publishing platform made for writers. Start a blog, share knowledge within your organization, or build a community around the shared act of writing."
|
|
|
|
RUN apk add --update nodejs npm make g++ git
|
|
RUN npm install -g less less-plugin-clean-css
|
|
|
|
RUN mkdir -p /go/src/github.com/writefreely/writefreely
|
|
WORKDIR /go/src/github.com/writefreely/writefreely
|
|
|
|
COPY . .
|
|
|
|
RUN cat ossl_legacy.cnf > /etc/ssl/openssl.cnf
|
|
|
|
ENV GO111MODULE=on
|
|
ENV NODE_OPTIONS=--openssl-legacy-provider
|
|
|
|
RUN make build \
|
|
&& make ui
|
|
RUN mkdir /stage && \
|
|
cp -R /go/bin \
|
|
/go/src/github.com/writefreely/writefreely/templates \
|
|
/go/src/github.com/writefreely/writefreely/static \
|
|
/go/src/github.com/writefreely/writefreely/pages \
|
|
/go/src/github.com/writefreely/writefreely/keys \
|
|
/go/src/github.com/writefreely/writefreely/cmd \
|
|
/stage
|
|
|
|
# Final image
|
|
FROM alpine:3
|
|
|
|
RUN apk add --no-cache openssl ca-certificates
|
|
COPY --from=build --chown=daemon:daemon /stage /go
|
|
|
|
WORKDIR /go
|
|
VOLUME /go/keys
|
|
EXPOSE 8080
|
|
USER daemon
|
|
|
|
ENTRYPOINT ["cmd/writefreely/writefreely"]
|