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.
16 lines
250 B
16 lines
250 B
6 years ago
|
FROM golang:1.11.2-alpine3.8
|
||
|
|
||
|
RUN apk add --update nodejs nodejs-npm make git
|
||
|
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
|
||
|
|
||
|
EXPOSE 8080
|
||
|
CMD ["writefreely"]
|