Spaces:
Running
Running
File size: 487 Bytes
9a38549 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
# 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"]
|