ReySajju742 commited on
Commit
8a279ff
·
verified ·
1 Parent(s): 6104eeb

Delete Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +0 -17
Dockerfile DELETED
@@ -1,17 +0,0 @@
1
- # Use an official Python runtime as a parent image
2
- FROM python:3.9-slim
3
-
4
- # Set the working directory to /app
5
- WORKDIR /app
6
-
7
- # Copy the current directory contents into the container at /app
8
- COPY . /app
9
-
10
- # Install any needed packages specified in requirements.txt
11
- RUN pip install --no-cache-dir -r requirements.txt
12
-
13
- # Expose the port the app runs on
14
- EXPOSE 5000
15
-
16
- # Run the app using Gunicorn
17
- CMD ["gunicorn", "-b", "0.0.0.0:5000", "app:app"]