wiki/Dockerfile
Peter Stuifzand 5850c556c8
All checks were successful
continuous-integration/drone/push Build is passing
Use webpack 5
- Generate to editor/dist
2021-08-15 23:18:57 +02:00

10 lines
226 B
Docker

FROM alpine
RUN apk --no-cache add ca-certificates git
RUN adduser --disabled-password --uid 1005 wiki
EXPOSE 80
WORKDIR /app
ADD ./wiki /app
ADD ./templates /app/templates
ADD ./editor/dist /app/dist
ENTRYPOINT ["/app/wiki"]