Skip to content

Instantly share code, notes, and snippets.

@kimschles
Last active December 26, 2018 17:34
Show Gist options
  • Select an option

  • Save kimschles/5e4765d94307f6e3404a3574b126521e to your computer and use it in GitHub Desktop.

Select an option

Save kimschles/5e4765d94307f6e3404a3574b126521e to your computer and use it in GitHub Desktop.
Dockerfile for beginners_guide_to_k8s
FROM node:carbon
WORKDIR /usr/src/app
COPY package*.json ./
RUN npm install
COPY . .
EXPOSE 8080
CMD ["npm", "start"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment