Imageye commited on
Commit
6ae0562
·
verified ·
1 Parent(s): d1e85de

Delete DockerFile

Browse files
Files changed (1) hide show
  1. DockerFile +0 -27
DockerFile DELETED
@@ -1,27 +0,0 @@
1
- # Use the official Python image from the Docker Hub
2
- FROM python:3.10-slim
3
-
4
- # Install system dependencies
5
- RUN apt-get update && apt-get install -y \
6
- ffmpeg \
7
- libsm6 \
8
- libxext6 \
9
- && rm -rf /var/lib/apt/lists/*
10
-
11
- # Set the working directory
12
- WORKDIR /app
13
-
14
- # Copy the requirements file into the image
15
- COPY requirements.txt .
16
-
17
- # Install Python dependencies
18
- RUN pip install --no-cache-dir -r requirements.txt
19
-
20
- # Copy the rest of the application code into the image
21
- COPY . .
22
-
23
- # Expose the port that Streamlit will run on
24
- EXPOSE 8501
25
-
26
- # Command to run the Streamlit application
27
- CMD ["streamlit", "run", "app.py"]