Skip to content
This repository was archived by the owner on Jul 22, 2025. It is now read-only.

Commit 5adf1b8

Browse files
committed
Add missing files for runtime Dockerfile (#43)
Also fixed wrong path typos in README file.
1 parent ce52bbf commit 5adf1b8

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

OMAF-Sample/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ For details in FFmpeg plugins' parameters, refer to the [FFmpeg usage doc](../sr
5858
- Client :
5959
```bash
6060
sudo su
61-
cd path_to/Immersive-Video-Sample/src/build/client/player
61+
cd path_to/Immersive-Video-Sample/src/build/client/player/app
6262
export LD_LIBRARY_PATH=/usr/local/lib/:$LD_LIBRARY_PATH
6363
vim config.xml # Set up configuration, details in table at bottom.
6464
./render # Press 'q' button to quit.
@@ -94,7 +94,7 @@ For details in FFmpeg plugins' parameters, refer to the [FFmpeg usage doc](../sr
9494
- Client :
9595
```bash
9696
sudo su
97-
cd path_to/Immersive-Video-Sample/src/build/client/player
97+
cd path_to/Immersive-Video-Sample/src/build/client/player/app
9898
export LD_LIBRARY_PATH=/usr/local/lib/:$LD_LIBRARY_PATH
9999
vim config.xml # Set up configuration, details in table at bottom.
100100
./render # Press 'q' button to quit.

OMAF-Sample/server/Dockerfile.runtime

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,12 @@ COPY --chown=10001:10001 --from=base /usr/local/nginx /usr/local/nginx
2323
COPY --chown=10001:10001 --from=base /usr/local/lib/libHevcVideoStreamProcess.so /usr/local/lib/
2424
COPY --chown=10001:10001 --from=base /usr/local/lib/libHighResPlusFullLowResPacking.so /usr/local/lib/
2525
COPY --chown=10001:10001 --from=base /usr/local/lib/libSegmentWriter.so /usr/local/lib/
26-
COPY --chown=10001:10001 --from=base /usr/bin/bc /usr/bin
27-
COPY --chown=10001:10001 --from=base /usr/bin/openssl /usr/bin
26+
COPY --chown=10001:10001 --from=base /usr/local/lib/libMPDWriter.so /usr/local/lib/
27+
COPY --chown=10001:10001 --from=base /usr/lib64/libnuma.so.1.0.0 /usr/lib64/
28+
COPY --chown=10001:10001 --from=base /usr/lib64/libnuma.so.1 /usr/lib64/
29+
COPY --chown=10001:10001 --from=base /usr/bin/numactl /usr/bin/
30+
COPY --chown=10001:10001 --from=base /usr/bin/bc /usr/bin/
31+
COPY --chown=10001:10001 --from=base /usr/bin/openssl /usr/bin/
2832
COPY --chown=10001:10001 --from=base /root/WorkerServer /root/
2933

3034
EXPOSE 443

0 commit comments

Comments
 (0)