Files
tcg-collectors-server/Dockerfile
T
joseph.nelson4456 569a41f053
Build and Push Image / build-and-push (push) Failing after 24s
fixed things to be more inline with how migrations work
2026-05-12 23:27:49 -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"]