Trang Dang
chmod cache file
d01a371
FROM python:3.9
WORKDIR /code
COPY ./requirements.txt /code/requirements.txt
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt \
&& mkdir cache \
&& chmod 777 cache
RUN pip install --upgrade pip \
&& pip install numpy \
&& pip install git+https://github.com/facebookresearch/segment-anything.git \
&& pip install git+https://github.com/huggingface/transformers.git
COPY . .
EXPOSE 7860
CMD ["shiny", "run", "app.py", "--host", "0.0.0.0", "--port", "7860"]