Skip to content

Commit 1155a1f

Browse files
committed
Update application entry point and Docker configuration
- Corrected the import statement in app.py to reference the ragadoc package, ensuring consistency in the codebase. - Renamed the application service in docker-compose.yml from 'app' to 'ragadoc' for improved clarity and alignment with the package name.
1 parent 71a142f commit 1155a1f

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from the ragadoc package.
44
55
This is now a much simpler main entry point that uses the UI modules
6-
from the ragnarok package.
6+
from the ragadoc package.
77
"""
88

99
import streamlit as st

docker-compose.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
version: '3.8'
22

3+
name: ragadoc
4+
35
services:
46
# Streamlit application
5-
app:
7+
ragadoc:
68
build: .
79
container_name: ragadoc-app
810
ports:

0 commit comments

Comments
 (0)