mirror of https://github.com/writeas/writefreely
A focused writing and publishing space.
https://write.with.parts
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
619 B
33 lines
619 B
FROM golang:1.11.2-alpine3.8 as build
|
|
|
|
RUN apk add --update nodejs nodejs-npm make g++ git sqlite-dev
|
|
RUN npm install -g less
|
|
RUN npm install -g less-plugin-clean-css
|
|
|
|
WORKDIR /go/src/app
|
|
COPY . .
|
|
|
|
RUN make install
|
|
RUN make ui
|
|
RUN make deps
|
|
RUN make assets
|
|
|
|
RUN mkdir /stage && \
|
|
cp -R /go/bin \
|
|
/go/src/app/templates \
|
|
/go/src/app/static \
|
|
/go/src/app/pages \
|
|
/go/src/app/keys \
|
|
/stage
|
|
|
|
FROM alpine:3.8
|
|
|
|
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
|
|
|
|
CMD ["bin/writefreely"]
|
|
|