Skip to content

Commit cc2d562

Browse files
authored
Merge pull request #2 from JuezUN/Deployment
fixed docker file (make clean rule doesn't exists)
2 parents d0f8b6a + c1ef34c commit cc2d562

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ ADD . /tmp/opt-cpp-backend
2929

3030
# we need to compile Valgrind from scratch within the container (hence
3131
# 'make clean' first) to make it work from within the container, ergh
32-
RUN cd /tmp/opt-cpp-backend/valgrind-3.11.0 && make clean && ./autogen.sh && ./configure --prefix=`pwd`/inst && make && make install
32+
RUN cd /tmp/opt-cpp-backend/valgrind-3.11.0 && ./autogen.sh && ./configure --prefix=`pwd`/inst && make && make install
3333

3434
RUN useradd netuser
3535

0 commit comments

Comments
 (0)