no1b4me commited on
Commit
50708ba
·
verified ·
1 Parent(s): 507e3b0

Delete Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +0 -18
Dockerfile DELETED
@@ -1,18 +0,0 @@
1
- FROM python:3.12-slim
2
-
3
- # Set the working directory
4
- WORKDIR /app
5
-
6
- # Copy project files
7
- COPY . /app
8
-
9
- # Install required packages
10
- RUN apt-get update && \
11
- apt-get install -y --no-install-recommends python3-dotenv && \
12
- apt-get clean && rm -rf /var/lib/apt/lists/*
13
-
14
- # Install Python dependencies
15
- RUN pip install --no-cache-dir -r requirements.txt
16
-
17
- # Run the application
18
- CMD ["python", "main.py"]