Spaces:
Sleeping
Sleeping
Create Dockerfile
Browse files- Dockerfile +26 -0
Dockerfile
ADDED
@@ -0,0 +1,26 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Use an official Python runtime as a parent image
|
2 |
+
FROM python:3.10-slim
|
3 |
+
|
4 |
+
# Set the working directory in the container
|
5 |
+
WORKDIR /app
|
6 |
+
|
7 |
+
# Copy the requirements file into the container
|
8 |
+
COPY requirements.txt .
|
9 |
+
|
10 |
+
# Install Python dependencies
|
11 |
+
RUN pip install --no-cache-dir -r requirements.txt
|
12 |
+
|
13 |
+
# Install Node.js and nport
|
14 |
+
RUN apt-get update && apt-get install -y curl && \
|
15 |
+
curl -fsSL https://deb.nodesource.com/setup_18.x | bash - && \
|
16 |
+
apt-get install -y nodejs && \
|
17 |
+
npm install -g nport
|
18 |
+
|
19 |
+
# Copy the application code into the container
|
20 |
+
COPY app.py .
|
21 |
+
|
22 |
+
# Expose port 5000 for the Flask app
|
23 |
+
EXPOSE 5000
|
24 |
+
|
25 |
+
# Command to run the application
|
26 |
+
CMD ["python", "app.py"]
|