srinuksv commited on
Commit
a60c3ce
·
verified ·
1 Parent(s): 1ff0e28

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +19 -0
Dockerfile ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM ubuntu:22.04
2
+
3
+ # Set non-interactive frontend to avoid prompts
4
+ ENV DEBIAN_FRONTEND=noninteractive
5
+
6
+ # Install OpenShot and dependencies
7
+ RUN apt-get update && apt-get install -y \
8
+ openshot-qt \
9
+ python3-pyqt5 \
10
+ libx11-6 \
11
+ libxrender1 \
12
+ libgl1-mesa-glx \
13
+ && rm -rf /var/lib/apt/lists/*
14
+
15
+ # Set display environment variable
16
+ ENV DISPLAY=:0
17
+
18
+ # Default command to run OpenShot
19
+ CMD ["openshot-qt"]