mirror of
https://github.com/thelegendtubaguy/ArrQueueCleaner.git
synced 2026-01-25 03:18:27 -06:00
15 lines
177 B
Docker
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"]
|