forked from voctory/serverless-template-stable-diffusion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
31 lines (22 loc) · 731 Bytes
/
Dockerfile
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
# Must use a Cuda version 11+
FROM pytorch/pytorch:1.11.0-cuda11.3-cudnn8-runtime
WORKDIR /
# Install git
RUN apt-get update && apt-get install -y git
# Install python packages
RUN pip3 install --upgrade pip
ADD requirements.txt requirements.txt
RUN pip3 install -r requirements.txt
RUN pip install --upgrade git+https://github.com/huggingface/diffusers.git transformers accelerate scipy
# We add the banana boilerplate here
ADD server.py .
EXPOSE 8000
# Add your huggingface auth key here
ENV HF_AUTH_TOKEN=your_token
# Add your model weight files
# (in this case we have a python script)
ADD download.py .
RUN python3 download.py
# Add your custom app code, init() and inference()
ADD app.py .
CMD python3 -u server.py