commit 36e33e2325987c7724bc7c16b7eb3d4c6fc76c59 parent b3c500b8505eeb78a85fa00443275d6249bff2e6 Author: William Lindholm <william_lindholm@outlook.com> Date: Fri, 29 Mar 2024 20:58:48 +0100 Changed end of line sequence for better compatability. Diffstat:
| M | .gitignore | | | 5 | +++-- |
| M | Dockerfile | | | 6 | +++--- |
2 files changed, 6 insertions(+), 5 deletions(-)
diff --git a/.gitignore b/.gitignore @@ -1,3 +1,4 @@ mysql-data LenaSYS -githubMetadata -\ No newline at end of file +githubMetadata +coursesyspw.php +\ No newline at end of file diff --git a/Dockerfile b/Dockerfile @@ -27,7 +27,7 @@ COPY init.sh /usr/local/bin/init.sh RUN chmod +x /usr/local/bin/init.sh # Set the script as the entrypoint -ENTRYPOINT ["/usr/local/bin/init.sh"] +ENTRYPOINT [ "/usr/local/bin/init.sh" ] # Default command -CMD ["apache2-foreground"] -\ No newline at end of file +CMD [ "apache2-foreground" ] +\ No newline at end of file