2019-01-16 21:05:52 +01:00
# Build image
2023-01-20 12:36:11 +01:00
FROM golang:1.19-alpine as build
2018-11-14 05:24:06 +01:00
2023-09-07 21:46:45 +02:00
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."
2021-08-08 22:27:33 +02:00
RUN apk add --update nodejs npm make g++ git
2019-01-16 21:05:52 +01:00
RUN npm install -g less less-plugin-clean-css
2018-11-14 05:24:06 +01:00
2021-04-06 23:24:07 +02:00
RUN mkdir -p /go/src/github.com/writefreely/writefreely
WORKDIR /go/src/github.com/writefreely/writefreely
2020-10-26 14:50:11 +01:00
2018-11-14 05:24:06 +01:00
COPY . .
2023-01-20 12:36:11 +01:00
RUN cat ossl_legacy.cnf > /etc/ssl/openssl.cnf
2019-04-19 12:48:16 +02:00
ENV GO111MODULE = on
2023-01-20 12:36:11 +01:00
ENV NODE_OPTIONS = --openssl-legacy-provider
2020-10-26 14:50:11 +01:00
2019-01-16 21:05:52 +01:00
RUN make build \
2020-10-26 14:50:11 +01:00
&& make ui
2018-11-21 17:38:56 +01:00
RUN mkdir /stage && \
cp -R /go/bin \
2021-04-06 23:24:07 +02:00
/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 \
2018-11-22 13:57:05 +01:00
/stage
2018-11-21 17:38:56 +01:00
2019-01-16 21:05:52 +01:00
# Final image
2022-05-25 18:43:13 +02:00
FROM alpine:3
2018-11-21 17:38:56 +01:00
2018-12-05 13:33:13 +01:00
RUN apk add --no-cache openssl ca-certificates
2018-11-21 17:38:56 +01:00
COPY --from= build --chown= daemon:daemon /stage /go
2018-11-21 19:51:37 +01:00
WORKDIR /go
2018-11-21 17:38:56 +01:00
VOLUME /go/keys
2018-11-14 05:24:06 +01:00
EXPOSE 8080
2018-11-21 17:38:56 +01:00
USER daemon
2019-04-19 13:05:01 +02:00
ENTRYPOINT [ "cmd/writefreely/writefreely" ]