We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5c8141b commit 04c1f48Copy full SHA for 04c1f48
Dockerfile
@@ -9,13 +9,15 @@ MAINTAINER Edward Smith <[email protected]>
9
# Check if CPL library needs to be updated, this is required as cplopenfoam
10
# will contain an old version of CPL library and this can easily be updated
11
WORKDIR /cpl-library
12
-RUN git pull && \
+RUN git fetch --all && \
13
+ git reset --hard origin/master && \
14
make PLATFORM=gcc clean && \
15
make PLATFORM=gcc
16
17
#We need to update the app to the latest code, patch OpenFOAM and build solvers
18
WORKDIR $APP_DIR
-RUN git pull
19
20
+ git reset --hard origin/master
21
RUN /bin/bash -c "source SOURCEME.sh && \
22
make clean && \
23
make pstream && \
0 commit comments