File size: 498 Bytes
52dce0a
 
 
 
 
 
d01a371
 
 
a5d18f6
 
 
 
52dce0a
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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"]