Files
Rasadyar_Payment/Dockerfile
2026-01-27 12:07:39 +03:30

15 lines
124 B
Docker

FROM node:18-alpine
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . .
EXPOSE 3000
CMD ["node", "index.js"]