File size: 679 Bytes
444d060
 
 
 
 
df2ec30
 
 
 
 
 
 
 
 
444d060
 
 
 
 
 
 
 
8dab4ad
277e1a2
df2ec30
705e79b
df2ec30
 
30fe208
705e79b
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# read the doc: https://huggingface.co./docs/hub/spaces-sdks-docker
# you will also find guides on how best to write your Dockerfile

FROM python:3.9

### Set up user with permissions
# Set up a new user named "user" with user ID 1000
RUN useradd -m -u 1000 user

# Switch to the "user" user
USER user

RUN mkdir -p /code

WORKDIR /code

COPY ./requirements.txt /code/requirements.txt

RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt

COPY . .

# RUN mkdir -p /cache
### Update permissions for the app
# USER root
# RUN chmod 777 $PWD
# RUN chmod 777 /
# USER user

CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
# CMD [ "python", "app.py" ]