add: dockerfile and docker ignore rules
All checks were successful
Deploy on push / deploy (push) Has been skipped

This commit is contained in:
2026-03-23 02:46:53 -07:00
parent a72e4d21d5
commit b1403da70d
2 changed files with 19 additions and 0 deletions

4
.dockerignore Normal file
View File

@@ -0,0 +1,4 @@
.DS_Store
.git
.runtime
node_modules

15
Dockerfile Normal file
View File

@@ -0,0 +1,15 @@
FROM node:22-bookworm-slim
WORKDIR /app
COPY package.json package-lock.json ./
RUN npm ci --omit=dev
COPY . .
ENV HOST=0.0.0.0
ENV PORT=80
EXPOSE 80
CMD ["npm", "start"]