Spaces:
Running
Running
Create Dockerfile
Browse files- Dockerfile +20 -0
Dockerfile
ADDED
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Use the official Python base image
|
2 |
+
FROM python:3.8-slim
|
3 |
+
|
4 |
+
# Set the working directory, subsequent commands will be executed in this directory
|
5 |
+
WORKDIR /app
|
6 |
+
|
7 |
+
# Copy all files in the current directory to the working directory
|
8 |
+
COPY . /app
|
9 |
+
|
10 |
+
# Install Flask library
|
11 |
+
RUN pip install Flask
|
12 |
+
|
13 |
+
# Tell Docker the port number to listen on when running the container
|
14 |
+
EXPOSE 5000
|
15 |
+
|
16 |
+
# Set environment variables to ensure Flask is running in production mode
|
17 |
+
ENV FLASK_ENV=development
|
18 |
+
|
19 |
+
# Set the startup command to run the Flask application
|
20 |
+
CMD ["flask", "run", "--host=0.0.0.0"]
|