Peter Stuifzand
5850c556c8
All checks were successful
continuous-integration/drone/push Build is passing
- Generate to editor/dist
10 lines
226 B
Docker
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"]
|