Spaces:
Sleeping
Sleeping
Commit ·
303044c
1
Parent(s): f844fb7
put back AWS CLI for interaction with MLFLOW
Browse files- Dockerfile +7 -1
Dockerfile
CHANGED
|
@@ -3,9 +3,15 @@ FROM continuumio/miniconda3
|
|
| 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 |
|
|
|
|
| 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 |
|