Container commited on
Commit
2e32ce9
·
verified ·
1 Parent(s): 5f5502e

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +13 -14
Dockerfile CHANGED
@@ -2,20 +2,19 @@ FROM selenium/standalone-chrome:latest
2
 
3
  USER root
4
 
5
- RUN apt-get install -y --no-install-recommends python3
6
- # RUN apt-get update && apt-get install -y --no-install-recommends \
7
- # # build-essential \
8
- # git \
9
- # python3 \
10
- # # python3-dev \
11
- # # python3-numpy \
12
- # python3-pip \
13
- # # python3-setuptools \
14
- # openssl \
15
- # # libffi-dev \
16
- # # libssl-dev \
17
- # # python3-wheel \
18
- # && rm -rf /var/lib/apt/lists/*
19
 
20
  COPY requirements.txt .
21
  RUN pip3 install -r requirements.txt
 
2
 
3
  USER root
4
 
5
+ RUN apt-get update && apt-get install -y --no-install-recommends \
6
+ # build-essential \
7
+ # git \
8
+ # python3 \
9
+ # python3-dev \
10
+ # python3-numpy \
11
+ python3-pip \
12
+ # python3-setuptools \
13
+ # openssl \
14
+ # libffi-dev \
15
+ # libssl-dev \
16
+ # python3-wheel \
17
+ && rm -rf /var/lib/apt/lists/*
 
18
 
19
  COPY requirements.txt .
20
  RUN pip3 install -r requirements.txt