Skip to content

Instantly share code, notes, and snippets.

@kavinduchamiran
Last active September 21, 2019 14:49
Show Gist options
  • Save kavinduchamiran/2eac049798b0dcfb79841de8fba1b7e2 to your computer and use it in GitHub Desktop.
Save kavinduchamiran/2eac049798b0dcfb79841de8fba1b7e2 to your computer and use it in GitHub Desktop.
dockerfile server
FROM node:10-alpine
WORKDIR /cloudl-server
COPY package.json ./
RUN npm install
COPY . .
EXPOSE 5000
CMD ["npm", "start"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment