antoinekrajnc commited on
Commit
f844fb7
·
1 Parent(s): 3a78489

simplify docker image

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -7
Dockerfile CHANGED
@@ -3,15 +3,9 @@ FROM continuumio/miniconda3
3
  WORKDIR /home/app
4
 
5
  RUN apt-get update
6
- RUN apt-get install nano unzip
7
  RUN apt install curl -y
8
 
9
- RUN curl -fsSL https://get.deta.dev/cli.sh | sh
10
-
11
- RUN curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip"
12
- RUN unzip awscliv2.zip
13
- RUN ./aws/install
14
-
15
  COPY requirements.txt /dependencies/requirements.txt
16
  RUN pip install -r /dependencies/requirements.txt
17
 
 
3
  WORKDIR /home/app
4
 
5
  RUN apt-get update
6
+ RUN apt-get install nano
7
  RUN apt install curl -y
8
 
 
 
 
 
 
 
9
  COPY requirements.txt /dependencies/requirements.txt
10
  RUN pip install -r /dependencies/requirements.txt
11