mirror of
https://github.com/SrIzan10/makesweet-api.git
synced 2026-05-01 10:55:14 +00:00
15 lines
179 B
Docker
15 lines
179 B
Docker
FROM node:latest
|
|
|
|
WORKDIR /app
|
|
|
|
RUN apt update;apt install wkhtmltopdf curl -y
|
|
|
|
COPY ./package.json ./
|
|
|
|
RUN npm install
|
|
|
|
COPY . .
|
|
|
|
EXPOSE 3000
|
|
|
|
CMD node src/index.js |