add dockerfile for app

This commit is contained in:
MaolinPan 2021-06-10 20:49:05 +08:00
parent 13386236e4
commit 1825b4c553
1 changed files with 7 additions and 0 deletions

7
app/Dockerfile Normal file
View File

@ -0,0 +1,7 @@
# syntax=docker/dockerfile:1
FROM node:12-alpine
RUN apk add --no-cache python g++ make
WORKDIR /app
COPY . .
RUN yarn install --production
CMD ["node", "src/index.js"]