Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion a2a/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ else
fi
exec \$@
EOF
RUN chmod +x ./entrypoint.sh
RUN chmod +x ./entrypoint.sh && sed -i 's/\r$//' ./entrypoint.sh

RUN useradd --create-home --shell /bin/bash app \
&& chown -R app:app /app
Expand Down
2 changes: 1 addition & 1 deletion crew-ai/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,5 @@ else
fi
exec poetry run marketing_posts
EOF
RUN chmod +x /entrypoint.sh
RUN chmod +x /entrypoint.sh && sed -i 's/\r$//' /entrypoint.sh
CMD ["/entrypoint.sh"]
2 changes: 1 addition & 1 deletion langgraph/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -38,5 +38,5 @@ else
fi
exec python agent.py
EOF
RUN chmod +x /entrypoint.sh
RUN chmod +x /entrypoint.sh && sed -i 's/\r$//' /entrypoint.sh
ENTRYPOINT [ "/entrypoint.sh" ]
2 changes: 1 addition & 1 deletion spring-ai/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -44,5 +44,5 @@ export OPENAI_BASE_URL=\${OPENAI_BASE_URL%/}
export OPENAI_BASE_URL=\${OPENAI_BASE_URL%/v1}
exec java -jar app.jar
EOF
RUN chmod +x entrypoint.sh
RUN chmod +x entrypoint.sh && sed -i 's/\r$//' /entrypoint.sh
ENTRYPOINT ["./entrypoint.sh"]