gen2 / Dockerfile
dan92's picture
Upload 7 files
d8a9f4c verified
raw
history blame contribute delete
130 Bytes
FROM node:18-slim
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . .
EXPOSE 3000
CMD ["npm", "run", "dev"]