init
All checks were successful
Build SMS Gateway / Build image (push) Successful in 19s

This commit is contained in:
2026-01-19 18:44:24 +07:00
commit c49851de8b
11 changed files with 514 additions and 0 deletions

15
Dockerfile Normal file
View File

@@ -0,0 +1,15 @@
FROM node:20-alpine
WORKDIR /app
COPY package*.json ./
RUN npm install --production
COPY . .
RUN mkdir -p /app/data
EXPOSE 3000
CMD ["npm", "start"]