stock-exporter/Dockerfile
2025-04-17 10:20:46 -04:00

11 lines
128 B
Docker

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