p5.js-web-editor/Dockerfile

19 lines
345 B
Docker
Raw Normal View History

FROM node:8.9.0
ENV APP_HOME=/opt/node/app \
TERM=xterm
# Copy in the project files and set as working directory
ADD . $APP_HOME
WORKDIR $APP_HOME
# Install node modules
RUN git submodule init && \
npm install
# For development, mark the directory as a mount override point
VOLUME $APP_HOME
# Expose default server port
EXPOSE 8000