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.
wiki/Dockerfile

10 lines
219 B

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 ./dist /app/dist
ENTRYPOINT ["/app/wiki"]