feat: add Huggingface space base dockerfile
Browse files
HuggingfaceSpaceBase.Dockerfile
ADDED
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
FROM docker.io/pytorch/pytorch:latest
|
2 |
+
|
3 |
+
COPY ./requirements.txt /workspace/requirements.txt
|
4 |
+
|
5 |
+
RUN pip install -r /workspace/requirements.txt
|
6 |
+
|
7 |
+
COPY ./demo_fonts /workspace/demo_fonts
|
8 |
+
COPY ./font_demo_cache.bin /workspace/font_demo_cache.bin
|