Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- 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
|
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"]
|