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

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -5,12 +5,12 @@ FROM ultrafunk/undetected-chromedriver:latest
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 python \
9
  && pip3 --no-cache-dir install --upgrade pip \
10
  && rm -rf /var/lib/apt/lists/*
11
 
12
  COPY requirements.txt .
13
- RUN python -m pip install -r requirements.txt
14
 
15
  COPY aberconnect.sh .
16
 
 
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