geekyrakshit commited on
Commit
7df36af
·
1 Parent(s): 533939c

update: dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -2
Dockerfile CHANGED
@@ -7,13 +7,12 @@ RUN apt-get update && apt-get install -y \
7
  curl \
8
  software-properties-common \
9
  git \
 
10
  && rm -rf /var/lib/apt/lists/*
11
 
12
  COPY requirements.txt ./
13
  COPY src/ ./src/
14
 
15
- RUN apt-get update -y
16
- RUN apt-get install -y wget
17
  RUN pip3 install -r requirements.txt
18
 
19
  EXPOSE 8501
 
7
  curl \
8
  software-properties-common \
9
  git \
10
+ wget \
11
  && rm -rf /var/lib/apt/lists/*
12
 
13
  COPY requirements.txt ./
14
  COPY src/ ./src/
15
 
 
 
16
  RUN pip3 install -r requirements.txt
17
 
18
  EXPOSE 8501