ccashfrontend/Dockerfile
2021-06-16 17:51:07 +10:00

7 lines
137 B
Docker

# syntax=docker/dockerfile:1
FROM node:16
RUN apt install python g++ make
WORKDIR /app
COPY . .
RUN npm install
CMD ["node", "index.js"]