schedulord-discordbot/Dockerfile
Jesse James Isler 9e2f577c1e
Some checks failed
gitea_dndsources/schedulord-discordbot/pipeline/head There was a failure building this commit
Initial Commit
2022-06-08 16:04:45 +02:00

8 lines
170 B
Docker

# 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"]