mirror of https://github.com/requarks/wiki
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.
16 lines
315 B
16 lines
315 B
FROM node:8-alpine
|
|
LABEL maintainer="requarks.io"
|
|
|
|
RUN apk update && \
|
|
apk add bash curl git openssh supervisor --no-cache && \
|
|
mkdir -p /var/wiki
|
|
|
|
WORKDIR /var/wiki
|
|
|
|
COPY supervisord.conf /etc/supervisord.conf
|
|
COPY . /var/wiki
|
|
|
|
EXPOSE 3000
|
|
|
|
CMD ["supervisord", "--nodaemon", "-c", "/etc/supervisord.conf"]
|