wiki/Dockerfile

10 lines
226 B
Docker
Raw Permalink Normal View History

2019-02-05 20:28:37 +00:00
FROM alpine
RUN apk --no-cache add ca-certificates git
2019-02-25 17:55:06 +00:00
RUN adduser --disabled-password --uid 1005 wiki
2019-02-05 20:28:37 +00:00
EXPOSE 80
WORKDIR /app
2019-03-16 19:25:18 +00:00
ADD ./wiki /app
ADD ./templates /app/templates
ADD ./editor/dist /app/dist
2019-02-05 20:28:37 +00:00
ENTRYPOINT ["/app/wiki"]