FROM node:latest | |
WORKDIR /app | |
COPY package.json ./ | |
RUN npm install | |
COPY . ./ | |
CMD ['npm', 'start'] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
FROM node:latest | |
WORKDIR /app | |
COPY package.json ./ | |
RUN npm install | |
COPY . ./ | |
CMD ['npm', 'start'] |