SanjeevB1 commited on
Commit
c3f7f47
·
verified ·
1 Parent(s): 18a7173

Update Dockerfile

Browse files
Files changed (1) hide show
  1. 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