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.
|
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"]
|
|
|