ashhadahsan's picture
Upload 21 files
8e5dadf verified
raw
history blame
477 Bytes
FROM nvidia/cuda:12.4.1-cudnn-devel-ubuntu22.04
# Set environment variables
ENV DEBIAN_FRONTEND=noninteractive
ENV GRADIO_SERVER_NAME="0.0.0.0"
# Install necessary packages
RUN apt-get update && apt-get install -y \
python3 \
python3-pip \
openssh-client \
build-essential \
git
COPY . /lang-segment-anything
# Install dependencies
WORKDIR /lang-segment-anything
RUN pip install -r requirements.txt
EXPOSE 8000
# Entry point
CMD ["python3", "app.py"]