CyberCafe/Dockerfile

15 lines
197 B
Docker
Raw Normal View History

2025-12-25 14:52:41 -06:00
FROM node:24
2025-12-25 15:05:51 -06:00
#working directory in the container
2025-12-25 14:52:41 -06:00
WORKDIR /app
# Copy package.json and package-lock.json
COPY package*.json ./
RUN npm install
COPY . .
EXPOSE 3000
CMD [ "node", "backend.js" ]