stock-exporter/Dockerfile
ztimson 78b9522d03
All checks were successful
Build and publish / Git Tag (push) Successful in 3s
Build and publish / Build Container (push) Successful in 18s
cleanup
2025-04-17 12:12:40 -04:00

11 lines
142 B
Docker

FROM node:alpine
ARG PORT
ENV PORT=$PORT
COPY . .
RUN npm install && npm run build && rm -rf src
CMD ["node", "dist/main.js"]
EXPOSE $PORT