File size: 488 Bytes
88ca574
23813a1
b199aa3
292afa9
d67ca3c
 
88ca574
 
b199aa3
88ca574
34e17e0
b199aa3
d67ca3c
703f74f
88ca574
d67ca3c
b62fb7c
b199aa3
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Use an official Ubuntu base image
FROM kalilinux/kali-rolling

WORKDIR /code

COPY . /code
# Update the package lists
RUN apt-get update

# Install system packages
RUN apt-get install -y grep git python3 python3-pip coreutils curl

RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt

# Copy the rest of your application files

RUN curl -O https://gpt4all.io/models/ggml-gpt4all-j-v1.3-groovy.bin

EXPOSE 7860

CMD ["streamlit", "run", "app.py","--server.port", "7860"]