gopichandra commited on
Commit
2349ee9
·
verified ·
1 Parent(s): 0fb32c3

Delete Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +0 -34
Dockerfile DELETED
@@ -1,34 +0,0 @@
1
- # Use Python 3.10 base image
2
- FROM python:3.10
3
-
4
- # Set working directory inside the container
5
- WORKDIR /home/user/app
6
-
7
- # Install system dependencies
8
- RUN apt-get update && apt-get install -y \
9
- git \
10
- git-lfs \
11
- ffmpeg \
12
- libsm6 \
13
- libxext6 \
14
- cmake \
15
- rsync \
16
- libgl1-mesa-glx \
17
- curl \
18
- && rm -rf /var/lib/apt/lists/* \
19
- && git lfs install
20
-
21
- # Copy the requirements.txt into the container
22
- COPY requirements.txt /tmp/requirements.txt
23
-
24
- # Install Python dependencies from requirements.txt
25
- RUN pip install --no-cache-dir -r /tmp/requirements.txt
26
-
27
- # Copy the application code into the container
28
- COPY . /home/user/app
29
-
30
- # Expose the necessary port for the application
31
- EXPOSE 8080
32
-
33
- # Command to run the application
34
- CMD ["python", "app.py"]