Yusin commited on
Commit
17dbf80
·
1 Parent(s): d5cc73a

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -3
Dockerfile CHANGED
@@ -4,13 +4,11 @@ FROM ultrafunk/undetected-chromedriver:latest
4
 
5
  RUN apt-get update \
6
  && apt-get install -y python3-pip python3-dev \
7
- && cd /usr/local/bin \
8
- && ln -s /usr/bin/python3 python3 \
9
  && pip3 --no-cache-dir install --upgrade pip \
10
  && rm -rf /var/lib/apt/lists/*
11
 
12
  COPY requirements.txt .
13
- RUN python3 -m pip install -r requirements.txt
14
 
15
  COPY aberconnect.sh .
16
 
 
4
 
5
  RUN apt-get update \
6
  && apt-get install -y python3-pip python3-dev \
 
 
7
  && pip3 --no-cache-dir install --upgrade pip \
8
  && rm -rf /var/lib/apt/lists/*
9
 
10
  COPY requirements.txt .
11
+ RUN python -m pip install -r requirements.txt
12
 
13
  COPY aberconnect.sh .
14