Nexchan commited on
Commit
e44fad8
·
verified ·
1 Parent(s): fdf2e1b

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -8
Dockerfile CHANGED
@@ -1,7 +1,7 @@
1
  FROM node:latest
2
 
3
  RUN apt-get update && \
4
- apt-get install -y neofetch ffmpeg curl python3 python3-pip python3-venv && \
5
  rm -rf /var/lib/apt/lists/*
6
 
7
  WORKDIR /app
@@ -10,13 +10,6 @@ COPY package.json .
10
 
11
  RUN npm install
12
 
13
- # Create and activate a virtual environment
14
- RUN python3 -m venv /venv
15
- ENV PATH="/venv/bin:$PATH"
16
-
17
- # Install speedtest-cli within the virtual environment
18
- RUN pip install --no-cache-dir speedtest-cli
19
-
20
  COPY . .
21
 
22
  EXPOSE 7860
 
1
  FROM node:latest
2
 
3
  RUN apt-get update && \
4
+ apt-get install -y curl && \
5
  rm -rf /var/lib/apt/lists/*
6
 
7
  WORKDIR /app
 
10
 
11
  RUN npm install
12
 
 
 
 
 
 
 
 
13
  COPY . .
14
 
15
  EXPOSE 7860