mirror of
https://github.com/writeas/writefreely
synced 2025-01-22 14:51:22 +01:00
commit
bdcacbc632
2
.dockerignore
Normal file
2
.dockerignore
Normal file
@ -0,0 +1,2 @@
|
||||
Dockerfile
|
||||
.git
|
21
Dockerfile
21
Dockerfile
@ -1,4 +1,4 @@
|
||||
FROM golang:1.11.2-alpine3.8
|
||||
FROM golang:1.11.2-alpine3.8 as build
|
||||
|
||||
RUN apk add --update nodejs nodejs-npm make git
|
||||
RUN npm install -g less
|
||||
@ -11,5 +11,22 @@ RUN make install
|
||||
RUN make ui
|
||||
RUN make deps
|
||||
|
||||
RUN mkdir /stage && \
|
||||
cp -R /go/bin \
|
||||
/go/src/app/templates \
|
||||
/go/src/app/static \
|
||||
/go/src/app/schema.sql \
|
||||
/go/src/app/pages \
|
||||
/go/src/app/keys \
|
||||
/stage
|
||||
|
||||
FROM alpine:3.8
|
||||
|
||||
COPY --from=build --chown=daemon:daemon /stage /go
|
||||
|
||||
WORKDIR /go
|
||||
VOLUME /go/keys
|
||||
EXPOSE 8080
|
||||
CMD ["writefreely"]
|
||||
USER daemon
|
||||
|
||||
CMD ["bin/writefreely"]
|
||||
|
Loading…
Reference in New Issue
Block a user