We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b83e614 commit 4210f50Copy full SHA for 4210f50
boston_housing/project/Dockerfile
@@ -4,10 +4,12 @@ FROM python:3.6-slim-buster
4
5
WORKDIR /workspace/boston_housing
6
7
+COPY requirements.txt requirements.txt
8
+
9
+RUN pip install --no-cache --disable-pip-version-check --default-timeout=1000 -U -r requirements.txt
10
11
COPY . .
12
13
RUN chmod +x ./run_and_time.sh
14
-RUN pip install --no-cache --disable-pip-version-check --default-timeout=1000 -U -r requirements.txt
-
15
ENTRYPOINT ["python", "/workspace/boston_housing/mlcube.py"]
0 commit comments