pytorch-http/Dockerfile
2023-09-23 15:10:35 -05:00

11 lines
179 B
Docker

FROM git.orionkindel.com/tpl/asdf:bookworm
COPY .tool-versions ./
RUN asdf install
COPY requirements.txt ./
RUN pip install -r requirements.txt
COPY ./ ./
CMD ["python", "./"]