Skip to content

Commit 4210f50

Browse files
committed
Fix dockerfile
1 parent b83e614 commit 4210f50

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

boston_housing/project/Dockerfile

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,12 @@ FROM python:3.6-slim-buster
44

55
WORKDIR /workspace/boston_housing
66

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+
711
COPY . .
812

913
RUN chmod +x ./run_and_time.sh
1014

11-
RUN pip install --no-cache --disable-pip-version-check --default-timeout=1000 -U -r requirements.txt
12-
1315
ENTRYPOINT ["python", "/workspace/boston_housing/mlcube.py"]

0 commit comments

Comments
 (0)