nodelink / Dockerfile
flameface's picture
Update Dockerfile
cc89509 verified
raw
history blame
95 Bytes
FROM node:20
WORKDIR /
COPY package*.json ./
RUN npm install
COPY . .
CMD ["npm", "start"]