newservers commited on
Commit
72d92d0
·
verified ·
1 Parent(s): 8339ccc

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +5 -5
Dockerfile CHANGED
@@ -1,17 +1,17 @@
1
  FROM node:20-slim
2
 
3
  WORKDIR /app
4
- RUN git clone https://github.com/reaperofssa/banitaku.git /app
5
 
6
- RUN apt update && \
7
- apt install -y ffmpeg && \
8
- apt clean && rm -rf /var/lib/apt/lists/*
9
 
10
- RUN apt-get update && apt-get install -y git && rm -rf /var/lib/apt/lists/*
11
 
12
  RUN npm install express cors axios dotenv
13
 
14
  RUN chmod -R 777 /app
15
 
16
  EXPOSE 7860
 
17
  CMD ["node", "index.js"]
 
1
  FROM node:20-slim
2
 
3
  WORKDIR /app
 
4
 
5
+ RUN apt-get update && \
6
+ apt-get install -y git ffmpeg && \
7
+ apt-get clean && rm -rf /var/lib/apt/lists/*
8
 
9
+ RUN git clone https://github.com/reaperofssa/banitaku.git /app
10
 
11
  RUN npm install express cors axios dotenv
12
 
13
  RUN chmod -R 777 /app
14
 
15
  EXPOSE 7860
16
+
17
  CMD ["node", "index.js"]