Feature/kasm 1838 libjpeg turbo from source (#49)

New build option with latest stable libjpeg-turbo library
This commit is contained in:
Dmitry Maksyoma
2021-09-08 00:11:21 +12:00
committed by GitHub
parent 6f2805e186
commit 91eb953f62
28 changed files with 328 additions and 41 deletions

View File

@@ -7,4 +7,11 @@ RUN apt-get update && \
COPY ./debian/control /tmp
RUN apt-get update && echo YYY | mk-build-deps --install --remove /tmp/control
USER 1000
ARG L_UID
RUN if [ "$L_UID" -eq 0 ]; then \
useradd -m docker; \
else \
useradd -m docker -u $L_UID;\
fi
USER docker