Skip to content

Commit 8540d42

Browse files
committed
cd into repo before installing requirements in docker file
1 parent 8a5872d commit 8540d42

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docker/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ WORKDIR /app
77
# Copy pyproject.toml first so that we done need to reinstall in case anoter file
88
# is changing ater rebuiding docker image
99
RUN git clone --branch ${REPO_BRANCH} --single-branch https://github.com/scientificcomputing/example-paper-fenics.git
10-
RUN python3 -m pip install pip --upgrade && python3 -m pip install --no-cache-dir -r requirements.txt && rm -rf /tmp
10+
RUN cd example-paper-fenics && python3 -m pip install pip --upgrade && python3 -m pip install --no-cache-dir -r requirements.txt && rm -rf /tmp

0 commit comments

Comments
 (0)