Skip to content

Instantly share code, notes, and snippets.

@msfidelis
Created March 12, 2019 00:26
Show Gist options
  • Save msfidelis/36f986192a3c919fe9cf715e56b8b401 to your computer and use it in GitHub Desktop.
Save msfidelis/36f986192a3c919fe9cf715e56b8b401 to your computer and use it in GitHub Desktop.
FROM node:8.10.0-alpine
RUN npm install -g serverless
WORKDIR /app/
COPY ./package.json /app/package.json
RUN npm install
COPY . /app/
EXPOSE 3000
CMD ["npm", "run", "dev"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment