pytorch-http/Dockerfile

11 lines
179 B
Docker
Raw Normal View History

2023-09-23 20:10:35 +00:00
FROM git.orionkindel.com/tpl/asdf:bookworm
2023-09-18 17:59:41 +00:00
2023-09-23 20:10:35 +00:00
COPY .tool-versions ./
RUN asdf install
2023-09-18 17:59:41 +00:00
2023-09-23 20:10:35 +00:00
COPY requirements.txt ./
2023-09-18 17:59:41 +00:00
RUN pip install -r requirements.txt
2023-09-23 20:10:35 +00:00
COPY ./ ./
CMD ["python", "./"]