phenixrhyder commited on
Commit
96a7ce0
·
unverified ·
1 Parent(s): fd0b266

Delete Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +0 -20
Dockerfile DELETED
@@ -1,20 +0,0 @@
1
- # Use the standard Python 3.9 image
2
- FROM python:3.9
3
-
4
- # Set the working directory inside the container
5
- WORKDIR /app
6
-
7
- # Copy the requirements file into the working directory
8
- COPY requirements.txt .
9
-
10
- # Install the Python libraries specified in the requirements file
11
- RUN pip install -r requirements.txt
12
-
13
- # Copy all your other files (app.py, index.html) into the working directory
14
- COPY . .
15
-
16
- # Tell the container to listen on port 7860
17
- EXPOSE 7860
18
-
19
- # The command to run your application using gunicorn
20
- CMD ["python", "-m", "gunicorn", "app:app", "--bind", "0.0.0.0:7860"]