Files
ArrQueueCleaner/Dockerfile
TheLegendTubaGuy 1a0ffd0315 Initia commit
2025-09-02 22:24:41 -05:00

15 lines
177 B
Docker

FROM node:22-alpine
WORKDIR /app
COPY package*.json ./
RUN npm ci --only=production
COPY tsconfig.json ./
COPY src/ ./src/
RUN npm run build
USER node
CMD ["npm", "start"]