Soham0708 commited on
Commit
54bc267
·
verified ·
1 Parent(s): 6458ffc

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -0
Dockerfile CHANGED
@@ -25,6 +25,9 @@ RUN apt-get update && apt-get install -y \
25
  libgtk-3-0 \
26
  --no-install-recommends
27
 
 
 
 
28
  # Create a non-root user and set the environment path
29
  RUN useradd -m -u 1000 user
30
  USER user
 
25
  libgtk-3-0 \
26
  --no-install-recommends
27
 
28
+ # Clean up APT when done
29
+ RUN apt-get clean && rm -rf /var/lib/apt/lists/*
30
+
31
  # Create a non-root user and set the environment path
32
  RUN useradd -m -u 1000 user
33
  USER user