clone3 commited on
Commit
a89a34a
·
verified ·
1 Parent(s): 84c5474

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +10 -2
Dockerfile CHANGED
@@ -6,7 +6,13 @@ ENV DEBIAN_FRONTEND=noninteractive
6
  ENV USER root
7
 
8
  # Install required packages
9
- RUN apt-get update && apt-get install -y \
 
 
 
 
 
 
10
  supervisor \
11
  xfce4 \
12
  xfce4-terminal \
@@ -14,7 +20,9 @@ RUN apt-get update && apt-get install -y \
14
  net-tools \
15
  tigervnc-standalone-server \
16
  wget \
17
- xterm
 
 
18
 
19
  # Install noVNC
20
  RUN wget https://github.com/novnc/noVNC/archive/refs/tags/v1.2.0.tar.gz \
 
6
  ENV USER root
7
 
8
  # Install required packages
9
+ RUN apt-get update && \
10
+ apt-get upgrade -y && \
11
+ apt-get install -y \
12
+ apt-utils && \
13
+ apt-get install -f && \
14
+ dpkg --configure -a && \
15
+ apt-get install -y \
16
  supervisor \
17
  xfce4 \
18
  xfce4-terminal \
 
20
  net-tools \
21
  tigervnc-standalone-server \
22
  wget \
23
+ xterm && \
24
+ apt-get clean && \
25
+ rm -rf /var/lib/apt/lists/*
26
 
27
  # Install noVNC
28
  RUN wget https://github.com/novnc/noVNC/archive/refs/tags/v1.2.0.tar.gz \