Skip to content

Instantly share code, notes, and snippets.

@bbachi
Created April 10, 2020 00:05
Show Gist options
  • Save bbachi/0ed466709570f5ea3c4baf939fc3ed02 to your computer and use it in GitHub Desktop.
Save bbachi/0ed466709570f5ea3c4baf939fc3ed02 to your computer and use it in GitHub Desktop.
docker compose
FROM node:10
WORKDIR /usr/src/app/api
COPY package*.json ./
RUN npm install
EXPOSE 3080
CMD ["npm", "run", "dev"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment