Files
tcg-collectors-server/Dockerfile
T
joseph.nelson4456 d47633b638
Build and Push Image / build-and-push (push) Failing after 1m30s
updated build file, package file, and dockerfile
2026-05-12 22:44:46 -07:00

14 lines
256 B
Docker

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>
WORKDIR /app
COPY . .
RUN npm install --force
CMD ["npm", "run", "start"]