Yamamura/Dockerfile
2022-05-08 15:04:50 +02:00

15 lines
236 B
Docker

FROM node:18-alpine
RUN apk add --no-cache python3 make gcc g++
WORKDIR /app
COPY "docker/entrypoint.sh" ./
COPY package*.json ./
RUN npm install
COPY . ./
VOLUME [ "/app/config.json" ]
CMD ["sh", "entrypoint.sh"]