CyberCafe/Dockerfile
Görkem 1c9eef7285
All checks were successful
Node.js CI/CD / build (push) Successful in 15s
cleanup
2025-12-25 13:05:51 -08:00

15 lines
197 B
Docker

FROM node:24
#working directory in the container
WORKDIR /app
# Copy package.json and package-lock.json
COPY package*.json ./
RUN npm install
COPY . .
EXPOSE 3000
CMD [ "node", "backend.js" ]