more combining
This commit is contained in:
parent
4b46ba8266
commit
c86988424f
1 changed files with 12 additions and 13 deletions
23
Dockerfile
23
Dockerfile
|
|
@ -27,22 +27,21 @@ rpm-ostree install kata-containers && \
|
||||||
# add bore-sysctl
|
# add bore-sysctl
|
||||||
rpm-ostree install bore-sysctl && \
|
rpm-ostree install bore-sysctl && \
|
||||||
# install Apple HFS+ tools
|
# install Apple HFS+ tools
|
||||||
rpm-ostree install hfsplus-tools
|
rpm-ostree install hfsplus-tools && \
|
||||||
|
# install Mullvad VPN
|
||||||
|
mkdir /var/opt && rpm-ostree install https://mullvad.net/da/download/app/rpm/latest && \
|
||||||
|
mv "/opt/Mullvad VPN" /usr/lib/opt/ && \
|
||||||
|
# Clear cache
|
||||||
|
rpm-ostree cleanup -m
|
||||||
|
|
||||||
RUN mkdir /var/opt && cd /tmp && wget https://mullvad.net/da/download/app/rpm/latest -O mullvad.rpm && rpm-ostree install mullvad.rpm && \
|
# install gpu screen recorder and gpu screen recorder gtk
|
||||||
mv "/opt/Mullvad VPN" /usr/lib/opt/ && rm -f mullvad.rpm
|
|
||||||
|
|
||||||
# install gpu screen recorder
|
|
||||||
COPY gpu-screen-recorder/ /tmp/gpu-screen-recorder/
|
COPY gpu-screen-recorder/ /tmp/gpu-screen-recorder/
|
||||||
|
COPY gpu-screen-recorder-gtk/ /tmp/gpu-screen-recorder-gtk/
|
||||||
RUN cd /tmp/gpu-screen-recorder && \
|
RUN cd /tmp/gpu-screen-recorder && \
|
||||||
./install.sh && \
|
./install.sh && \
|
||||||
setcap cap_sys_admin+ep '/usr/bin/gsr-kms-server'
|
setcap cap_sys_admin+ep '/usr/bin/gsr-kms-server' && \
|
||||||
|
cd /tmp/gpu-screen-recorder-gtk && \
|
||||||
# install gpu screen recorder gtk
|
|
||||||
COPY gpu-screen-recorder-gtk/ /tmp/gpu-screen-recorder-gtk/
|
|
||||||
RUN cd /tmp/gpu-screen-recorder-gtk && \
|
|
||||||
./install.sh
|
./install.sh
|
||||||
|
|
||||||
RUN rpm-ostree cleanup -m && \
|
RUN rm -rf /tmp/* /var/* && mkdir -p /var/tmp && chmod -R 1777 /var/tmp && \
|
||||||
rm -rf /tmp/* /var/* && mkdir -p /var/tmp && chmod -R 1777 /var/tmp && \
|
|
||||||
ostree container commit
|
ostree container commit
|
||||||
Loading…
Add table
Add a link
Reference in a new issue