Skip to content

Commit

Permalink
Simplify and copy install path
Browse files Browse the repository at this point in the history
  • Loading branch information
ruffsl committed Jul 15, 2024
1 parent d7dbb03 commit fcc410e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
5 changes: 2 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,8 @@ FROM builder AS dancer
# cp -rT build /dancer

# Copy only the lib and bin directories
RUN --mount=type=cache,target=src/,ro \
mkdir /dancer && \
find src -type f -name "*.so" -exec cp {} /dancer/ \;
RUN mkdir /dancer && \
cp -rT install /dancer

################################################################################
# MARK: exporter - export rgl binaries and executables
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ Key features:
```shell
docker build \
--target=exporter \
--output=build .
--output=install .
```

#### Manual
Expand Down

0 comments on commit fcc410e

Please sign in to comment.