ashhadahsan commited on
Commit
8b2a874
·
verified ·
1 Parent(s): d6f728f

Delete Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +0 -24
Dockerfile DELETED
@@ -1,24 +0,0 @@
1
- FROM nvidia/cuda:12.4.1-cudnn-devel-ubuntu22.04
2
-
3
- # Set environment variables
4
- ENV DEBIAN_FRONTEND=noninteractive
5
- ENV GRADIO_SERVER_NAME="0.0.0.0"
6
-
7
- # Install necessary packages
8
- RUN apt-get update && apt-get install -y \
9
- python3 \
10
- python3-pip \
11
- openssh-client \
12
- build-essential \
13
- git
14
-
15
- COPY . /lang-segment-anything
16
-
17
- # Install dependencies
18
- WORKDIR /lang-segment-anything
19
- RUN pip install -r requirements.txt
20
-
21
- EXPOSE 8000
22
-
23
- # Entry point
24
- CMD ["python3", "app.py"]