ppsingh commited on
Commit
7bd9a96
·
verified ·
1 Parent(s): c133b7f

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +4 -4
Dockerfile CHANGED
@@ -10,11 +10,11 @@ WORKDIR $HOME
10
  RUN mkdir app
11
  WORKDIR $HOME/app
12
 
13
- COPY ./requirements.txt /app/requirements.txt
14
- COPY ./packages.txt /app/packages.txt
15
 
16
- RUN apt-get update && xargs -r -a /app/packages.txt apt-get install -y && rm -rf /var/lib/apt/lists/*
17
- RUN pip3 install --no-cache-dir -r /app/requirements.txt
18
 
19
  COPY --chown=user . $HOME/app
20
 
 
10
  RUN mkdir app
11
  WORKDIR $HOME/app
12
 
13
+ COPY ./requirements.txt home/app/requirements.txt
14
+ COPY ./packages.txt home/app/packages.txt
15
 
16
+ RUN apt-get update && xargs -r -a home/app/packages.txt apt-get install -y && rm -rf /var/lib/apt/lists/*
17
+ RUN pip3 install --no-cache-dir -r home/app/requirements.txt
18
 
19
  COPY --chown=user . $HOME/app
20