Satyam0077 commited on
Commit
5438412
·
verified ·
1 Parent(s): 7913146

Delete Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +0 -18
Dockerfile DELETED
@@ -1,18 +0,0 @@
1
- # Start with the base image
2
- FROM docker.io/library/python:3.10
3
-
4
- # Set the working directory
5
- WORKDIR /home/user/app
6
-
7
- # Install necessary system packages
8
- RUN apt-get update && apt-get install -y \
9
- git git-lfs ffmpeg libsm6 libxext6 cmake rsync libgl1-mesa-glx && \
10
- rm -rf /var/lib/apt/lists/* && \
11
- git lfs install
12
-
13
- # Upgrade pip to the latest version
14
- RUN pip install --upgrade pip
15
-
16
- # Install dependencies from requirements.txt
17
- COPY requirements.txt /tmp/requirements.txt
18
- RUN pip install --no-cache-dir -r /tmp/requirements.txt