mirror of
https://github.com/nx-bat/discordbot-ng.git
synced 2026-09-22 18:39:08 -04:00
10 lines
110 B
Docker
10 lines
110 B
Docker
FROM node:22-alpine
|
|
|
|
WORKDIR /app
|
|
|
|
COPY . .
|
|
|
|
RUN npm i
|
|
|
|
RUN npm run build
|
|
CMD ["npm", "run", "start"] |