Files
Rasadyar_Payment/Dockerfile

15 lines
124 B
Docker
Raw Normal View History

2026-01-27 12:07:39 +03:30
FROM node:18-alpine
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . .
EXPOSE 3000
CMD ["node", "index.js"]