Files
archived-makesweet-api/Dockerfile
2023-01-04 19:36:17 +01:00

13 lines
162 B
Docker

FROM node:latest
WORKDIR /app
RUN apt update;apt install wkhtmltopdf curl -y
COPY package.json ./
RUN npm install
COPY . .
CMD node src/index.js