Spaces:

File size: 460 Bytes
c5cde03
4242e42
76a9d56
 
409b3ab
76a9d56
 
6b78a54
4242e42
a3df185
4242e42
38bc588
89e4920
 
 
4242e42
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
FROM python:3.11-slim

RUN apt-get update
RUN apt-get install -y software-properties-common
RUN apt-add-repository ppa:swi-prolog/stable
RUN apt-get install -y swi-prolog
RUN apt-get install -y git gcc python3-dev

WORKDIR /app
COPY . /app

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

RUN python -c "import janus_swi as janus"

EXPOSE 7860
ENV GRADIO_SERVER_NAME="0.0.0.0"
CMD ["python", "app.py"]