adityaiiitr commited on
Commit
2c38cdf
·
verified ·
1 Parent(s): 0c89398

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +19 -19
Dockerfile CHANGED
@@ -1,19 +1,19 @@
1
- # Use an official Python runtime as a parent image
2
- FROM python:3.9
3
-
4
- # Set the working directory in the container
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
- RUN playwright install
14
-
15
- # Expose the port the app runs on
16
- EXPOSE 8000
17
-
18
- # Run the command to start the FastAPI server
19
- CMD ["python", "main.py"]
 
1
+ # Use an official Python runtime as a parent image
2
+ FROM python:3.9
3
+
4
+ # Set the working directory in the container
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
+ RUN playwright install
14
+
15
+ # Expose the port the app runs on
16
+ EXPOSE 7860
17
+
18
+ # Run the command to start the FastAPI server
19
+ CMD ["python", "main.py"]