mirror of
https://github.com/master-of-zen/Av1an.git
synced 2024-11-24 18:18:06 +00:00
Docker: Fix quoting, chmod for user access
Signed-off-by: Luigi311 <luigi311.lg@gmail.com>
This commit is contained in:
parent
324eedff08
commit
53cb2c5767
1 changed files with 2 additions and 2 deletions
|
@ -31,7 +31,7 @@ RUN git clone https://vcgit.hhi.fraunhofer.de/jvet/VVCSoftware_VTM.git /home/app
|
||||||
mkdir -p /home/app_user/VTM/build
|
mkdir -p /home/app_user/VTM/build
|
||||||
WORKDIR /home/app_user/VTM/build
|
WORKDIR /home/app_user/VTM/build
|
||||||
RUN cmake .. -DCMAKE_BUILD_TYPE=Release && \
|
RUN cmake .. -DCMAKE_BUILD_TYPE=Release && \
|
||||||
make -j$(nproc) && \
|
make -j"$(nproc)" && \
|
||||||
ln -s ../bin/EncoderAppStatic /usr/local/bin/vvc_encoder
|
ln -s ../bin/EncoderAppStatic /usr/local/bin/vvc_encoder
|
||||||
|
|
||||||
USER app_user
|
USER app_user
|
||||||
|
@ -79,7 +79,7 @@ WORKDIR /home/app_user/Av1an
|
||||||
RUN python setup.py install
|
RUN python setup.py install
|
||||||
|
|
||||||
# Change permissions
|
# Change permissions
|
||||||
RUN chown app_user:app_user -R /home/app_user
|
RUN chmod 777 -R /home/app_user
|
||||||
|
|
||||||
USER app_user
|
USER app_user
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue