Spaces:
Sleeping
Sleeping
# Starting from the Grobid image | |
FROM lfoppiano/grobid:0.7.3 | |
# Setting the user to root for installation purposes | |
USER root | |
# Create necessary directories for Grobid | |
RUN mkdir -m 777 -p /opt/grobid/grobid-home/tmp | |
# Give permissions to the default supervisord log directory | |
RUN mkdir -p /var/log/supervisor && chmod -R 777 /var/log/supervisor | |
RUN mkdir -p /var/run/supervisor && chmod 777 /var/run/supervisor | |
# Install supervisord and python (for gradio) | |
RUN apt-get update && apt-get install -y supervisor python3 python3-pip && rm -rf /var/lib/apt/lists/* | |
RUN pip3 install gradio | |
# Copy your gradio app to the image | |
COPY . /app/ | |
COPY ./data /app/data | |
# Install gradio | |
RUN pip3 install -r /app/requirements.txt | |
# Supervisord configuration | |
RUN echo "[supervisord]" > /etc/supervisor/conf.d/supervisord.conf && \ | |
echo "nodaemon=true" >> /etc/supervisor/conf.d/supervisord.conf && \ | |
echo "" >> /etc/supervisor/conf.d/supervisord.conf && \ | |
echo "[rpcinterface:supervisor]" >> /etc/supervisor/conf.d/supervisord.conf && \ | |
echo "supervisor.rpcinterface_factory = supervisor.rpcinterface:make_main_rpcinterface" >> /etc/supervisor/conf.d/supervisord.conf && \ | |
echo "" >> /etc/supervisor/conf.d/supervisord.conf && \ | |
echo "[unix_http_server]" >> /etc/supervisor/conf.d/supervisord.conf && \ | |
echo "file=/tmp/supervisor.sock" >> /etc/supervisor/conf.d/supervisord.conf && \ | |
echo "" >> /etc/supervisor/conf.d/supervisord.conf && \ | |
echo "[program:grobid]" >> /etc/supervisor/conf.d/supervisord.conf && \ | |
echo "command=/opt/grobid/grobid-service/bin/grobid-service" >> /etc/supervisor/conf.d/supervisord.conf && \ | |
echo "" >> /etc/supervisor/conf.d/supervisord.conf && \ | |
echo "[program:gradio]" >> /etc/supervisor/conf.d/supervisord.conf && \ | |
echo "command=python3 /app/main.py" >> /etc/supervisor/conf.d/supervisord.conf | |
# Start processes with supervisord | |
CMD ["/usr/bin/supervisord"] | |