Pudding48 commited on
Commit
715828b
·
verified ·
1 Parent(s): e82add6

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.10.9 image
2
  FROM python:3.10.9
3
 
 
 
 
 
4
  # Copy the current directory contents into the container at .
5
  COPY . .
6
 
 
1
  # Use the official Python 3.10.9 image
2
  FROM python:3.10.9
3
 
4
+ ENV PYTHONUNBUFFERED=1 \
5
+ PORT=8000 \
6
+ HF_HOME=/home/user/huggingface
7
+
8
  # Copy the current directory contents into the container at .
9
  COPY . .
10