samyun / southwest-price-drop-bot

Bot that watches Southwest flights for price drops.
Other
74 stars 41 forks source link

DOC: Entrypoint scripts need to be chmod +x #89

Open utdrmac opened 11 months ago

utdrmac commented 11 months ago

The Dockerfile uses the following line:

ADD . /home/app

This line copies all the contents of the git repo into the container which includes 2 .sh scripts that function as entrypoints for the main app container and the job container. These two scripts must be chmod +x BEFORE you build the containers otherwise on docker compose up, the containers will fail to start.

There is no mention of this critical step in the README. Please consider adding to the docs.

iloveitaly commented 11 months ago

Want to submit a PR to fix?