Reaperxxxx commited on
Commit
b7c6c2e
·
verified ·
1 Parent(s): 823d54a

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +7 -0
Dockerfile ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ FROM node:18-slim
2
+ RUN apt update && apt install -y git && apt clean
3
+ RUN git clone https://github.com/reaperofssa/pesdb /app
4
+ WORKDIR /app
5
+ RUN npm install --no-save express axios cheerio
6
+ EXPOSE 7860
7
+ CMD ["node", "app.js"]