only run main.py

parent a3e91608
...@@ -16,7 +16,10 @@ COPY . . ...@@ -16,7 +16,10 @@ COPY . .
# Make the script executable # Make the script executable
RUN chmod +x wait-for-postgres.sh RUN chmod +x wait-for-postgres.sh
RUN chmod +x ./start.sh
# Use the full path for the entrypoint
ENTRYPOINT ["/app/wait-for-postgres.sh"]
# This is your application's original startup command # This is your application's original startup command
ENTRYPOINT ["./start.sh"] #CMD ["/bin/bash", "-c", "python apply_test_schema.py && python insert_csv_embeddings.py && python main.py"]
\ No newline at end of file CMD ["python", "main.py"]
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment