Skip to content

Commit

Permalink
Fix docker file copy command
Browse files Browse the repository at this point in the history
  • Loading branch information
Pro committed May 16, 2017
1 parent 611315f commit 7e08e6d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ RUN cmake -DUA_ENABLE_AMALGAMATION=true \
/tmp/open62541
RUN make -j
RUN cp *.h /usr/include/ && \
cp *.so /usr/lib
cp bin/*.so /usr/lib
2 changes: 1 addition & 1 deletion TinyDockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ RUN apk add --no-cache cmake gcc g++ musl-dev python make && rm -rf /var/cache/a
-DBUILD_SHARED_LIBS=true /tmp/open62541 && \
make && \
cp *.h /usr/include/ && \
cp *.so /usr/lib && \
cp bin/*.so /usr/lib && \
make clean && \
apk del cmake gcc g++ musl-dev python make

0 comments on commit 7e08e6d

Please sign in to comment.