Jesse James Isler
9e2f577c1e
Some checks failed
gitea_dndsources/schedulord-discordbot/pipeline/head There was a failure building this commit
8 lines
170 B
Docker
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"]
|