hosts / Dockerfile
AbdulElahGwaith's picture
Upload folder using huggingface_hub
37daeaf verified
Raw
History Blame Contribute Delete
207 Bytes
FROM docker.io/python:3-alpine
ENV IN_CONTAINER=1
RUN apk add --no-cache git sudo
COPY . /hosts
RUN pip install --no-cache-dir --upgrade -r /hosts/requirements.txt
ENV PATH=$PATH:/hosts
WORKDIR /hosts