File size: 704 Bytes
9def24b
 
a5d73b4
 
 
 
9def24b
 
 
 
06af4a7
 
 
 
 
 
 
9def24b
 
 
4be4360
 
a5d73b4
9def24b
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
FROM python:3.9

# Set environment variables
ENV VIRTUAL_ENV=/opt/venv
ENV PATH="$VIRTUAL_ENV/bin:$PATH"

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 . .

# Set permissions for cache directory if it exists
RUN if [ ! -d "cache" ]; then mkdir cache; fi && chmod 777 cache

EXPOSE 7860

CMD ["shiny", "run", "app.py", "--host", "0.0.0.0", "--port", "7860"]