Files
tcg-collectors-server/Dockerfile
T
joseph.nelson4456 7dc66697ea
Build and Push Image / build-and-push (push) Failing after 1m41s
fixing arg to be assigned to ENV
2026-05-13 22:30:45 -07:00

12 lines
148 B
Docker

FROM node:24-alpine
ARG DATABASE_URL
ENV DATABASE_URL=${DATABASE_URL}
WORKDIR /app
COPY . .
RUN npm install --force
CMD ["npm", "run", "start"]