fix: fix pacman cache clean

This commit is contained in:
DCsunset 2020-05-13 20:54:16 -07:00
parent 7f2c6ed18f
commit 7d9041474f

View file

@ -15,11 +15,11 @@ ENV websockify_version=0.9.0
# Install apps # Install apps
RUN pacman -Sy --noconfirm xfce4 xfce4-goodies \ RUN pacman -Sy --noconfirm xfce4 xfce4-goodies \
chromium vim wget tigervnc \ chromium vim wget tigervnc \
python-numpy python-setuptools python-numpy python-setuptools \
&& pacman -Scc --noconfirm
RUN pacman -Scc \
# Install noVNC # Install noVNC
&& wget https://github.com/novnc/websockify/archive/v${websockify_version}.tar.gz -O /websockify.tar.gz \ RUN wget https://github.com/novnc/websockify/archive/v${websockify_version}.tar.gz -O /websockify.tar.gz \
&& tar -xvf /websockify.tar.gz -C / \ && tar -xvf /websockify.tar.gz -C / \
&& cd /websockify-${websockify_version} \ && cd /websockify-${websockify_version} \
&& python setup.py install \ && python setup.py install \