Skip to content

Commit 4e94110

Browse files
committed
Added Dockerfile
1 parent 8e48c99 commit 4e94110

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

samples/retrieval-chain/Dockerfile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,23 +34,23 @@ RUN cat > /app/startup.sh << 'EOF'
3434
#!/bin/bash
3535
set -e
3636

37-
echo "🚀 Starting UiPath Retrieval Chain..."
37+
echo "Starting UiPath Retrieval Chain..."
3838

3939
# Re-authenticate in case token expired
40-
echo "🔐 Authenticating with UiPath..."
40+
echo "Authenticating with UiPath..."
4141
uv run uipath auth --client-id="$CLIENT_ID" --client-secret="$CLIENT_SECRET" --base-url="$BASE_URL"
4242

4343
# Check if arguments are provided
4444
if [ $# -eq 0 ]; then
45-
echo "📄 Running retrieval chain with default parameters..."
45+
echo "Running retrieval chain with default parameters..."
4646
exec uv run python main.py
4747
else
48-
echo "📄 Running retrieval chain with parameters: $@"
48+
echo "Running retrieval chain with parameters: $@"
4949
exec uv run python main.py "$@"
5050
fi
5151
EOF
5252

5353
RUN chmod +x /app/startup.sh
5454

5555
# Default command
56-
CMD ["/app/startup.sh"]
56+
CMD ["/app/startup.sh"]

0 commit comments

Comments
 (0)