You've already forked discord-bot
mirror of
https://github.com/t2linux/discord-bot.git
synced 2026-04-30 13:49:21 -07:00
13 lines
211 B
Docker
13 lines
211 B
Docker
FROM node:alpine
|
|
|
|
WORKDIR /usr/src/app
|
|
|
|
RUN sed -i 's/dl-cdn/dl-5/g' /etc/apk/repositories && sed -i 's/http:/https:/g' /etc/apk/repositories
|
|
|
|
COPY . .
|
|
|
|
RUN npm install
|
|
RUN npm run build
|
|
|
|
CMD [ "npm", "start" ]
|