Wills17 commited on
Commit
56147b1
·
verified ·
1 Parent(s): ed6d9b7

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +8 -1
Dockerfile CHANGED
@@ -4,7 +4,14 @@ FROM python:3.10
4
  WORKDIR /app
5
 
6
  # System dependencies
7
- RUN apt-get update && apt-get install -y git build-essential
 
 
 
 
 
 
 
8
 
9
  # Copy project
10
  COPY . .
 
4
  WORKDIR /app
5
 
6
  # System dependencies
7
+ RUN apt-get update && apt-get install -y \
8
+ git \
9
+ build-essential \
10
+ libgl1 \
11
+ libglib2.0-0 \
12
+ libsm6 \
13
+ libxext6 \
14
+ libxrender1
15
 
16
  # Copy project
17
  COPY . .