Files
tcg-collectors-server/Dockerfile
T
joseph.nelson4456 e9dd340b44
Build and Push Image / build-and-push (push) Failing after 1m32s
fixed spacing in string
2026-05-12 23:30:10 -07:00

10 lines
133 B
Docker

FROM node:24-alpine
ENV DATABASE_URL=<the_database_url>
WORKDIR /app
COPY . .
RUN npm install --force
CMD ["npm", "run", "start"]