FROM intelligencenoborders/scinobo-citance-analysis:v0.1.0 # Set the working directory in the container WORKDIR /app/src # Expose the port that Gradio will run on EXPOSE 7860 # Give permissions RUN chmod -R 777 /app RUN chmod -R 777 /.cache # Run app.py when the container launches CMD ["python", "-m", "citance_analysis.server.gradio_app"]