ojoel98 commited on
Commit
c70ddf8
·
verified ·
1 Parent(s): 62995d8

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -5
Dockerfile CHANGED
@@ -1,20 +1,16 @@
1
  FROM python:3.8-slim
2
 
3
- RUN apt-get update && apt-get install -y libgl1-mesa-glx
4
-
5
  WORKDIR /app
6
 
7
  COPY requirements.txt .
8
  RUN pip install --no-cache-dir -r requirements.txt
9
 
10
  COPY Data /app3/Data
11
-
12
  COPY ROCAS.token.txt /app3/ROCAS.token.txt
 
13
 
14
  RUN chmod 777 /app3
15
 
16
- COPY pesos10.npy /app3/pesos10.npy
17
-
18
  COPY . .
19
 
20
  CMD ["python", "app.py"]
 
1
  FROM python:3.8-slim
2
 
 
 
3
  WORKDIR /app
4
 
5
  COPY requirements.txt .
6
  RUN pip install --no-cache-dir -r requirements.txt
7
 
8
  COPY Data /app3/Data
 
9
  COPY ROCAS.token.txt /app3/ROCAS.token.txt
10
+ COPY pesos10.npy /app3/pesos10.npy
11
 
12
  RUN chmod 777 /app3
13
 
 
 
14
  COPY . .
15
 
16
  CMD ["python", "app.py"]