File size: 238 Bytes
6ab42bf |
1 2 3 4 5 6 7 8 9 |
FROM docker.io/pytorch/pytorch:latest
COPY ./requirements.txt /workspace/requirements.txt
RUN pip install -r /workspace/requirements.txt
COPY ./demo_fonts /workspace/demo_fonts
COPY ./font_demo_cache.bin /workspace/font_demo_cache.bin
|