Basic Node Project Dockerfile
FROM node:latest | |
WORKDIR /app | |
COPY package*.json ./ | |
RUN npm install | |
COPY . ./ |
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 . ./ |