Update Dockerfile
Browse files- Dockerfile +4 -0
Dockerfile
CHANGED
@@ -1,6 +1,10 @@
|
|
1 |
# Use the official Python 3.9 image
|
2 |
FROM python:3.9-slim
|
3 |
|
|
|
|
|
|
|
|
|
4 |
# Set the working directory
|
5 |
WORKDIR /app
|
6 |
|
|
|
1 |
# Use the official Python 3.9 image
|
2 |
FROM python:3.9-slim
|
3 |
|
4 |
+
# Set environment variables
|
5 |
+
ENV FLASK_APP=app.py
|
6 |
+
ENV FLASK_ENV=development
|
7 |
+
|
8 |
# Set the working directory
|
9 |
WORKDIR /app
|
10 |
|