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/dev/docker/Dockerfile

20 lines
330 B

# -- DEV DOCKERFILE --
# -- DO NOT USE IN PRODUCTION! --
FROM node:8-alpine
LABEL maintainer "requarks.io"
RUN apk update && \
apk add bash curl git python make g++ --no-cache && \
mkdir -p /var/wiki
WORKDIR /var/wiki
COPY package.json .
RUN yarn --silent
ENV dockerdev 1
EXPOSE 3000
CMD ["tail", "-f", "/dev/null"]