Skip to content
Snippets Groups Projects
Unverified Commit a1ca962f authored by Cracker's avatar Cracker Committed by GitHub
Browse files

Create Dockerfile

parent 3a564f42
No related branches found
No related tags found
No related merge requests found
FROM node:boron
MAINTAINER Cracker0dks
# Create app directory
RUN mkdir -p /opt/app
WORKDIR /opt/app
# Install app dependencies
COPY ./package.json /opt/app
RUN npm install
# Bundle app source
COPY . /opt/app
EXPOSE 389
CMD [ "npm", "start" ]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment