POMS-QA-LogicLLM / Dockerfile
npc0's picture
Update Dockerfile
72fe0e3 verified
raw
history blame
346 Bytes
FROM swipl
RUN python --version
RUN cat /etc/os-release
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"]