schedulord-discordbot/Dockerfile

8 lines
170 B
Docker
Raw Normal View History

2022-06-08 14:04:45 +00:00
# syntax=docker/dockerfile:1
FROM node:12-alpine
RUN apk add --no-cache python2 g++ make
WORKDIR /app
COPY . .
RUN yarn install --production
CMD ["node", "src/index.js"]