starting to create dockerfile for ci work

This commit is contained in:
2026-05-10 22:38:25 -07:00
parent 5318a1eb4a
commit e905899c60
4 changed files with 81 additions and 5 deletions
+14
View File
@@ -0,0 +1,14 @@
FROM node:24-alpine
ENV DB_HOST=<your_db_host>
ENV DB_USERNAME=<your_db_username>
ENV DB_PASSWORD=<your_db_password>
ENV DB_PORT=<your_db_port>
ENV DB_DATABASE=<your_db_database>
ARG CMD
WORKDIR /app
COPY . .
RUN npm install --force
CMD ["node", "run", "$CMD"]