First commit!

This commit is contained in:
2025-02-11 19:56:27 +01:00
commit 62ea3b87d8
7 changed files with 42 additions and 0 deletions

17
dockerfile Normal file
View File

@@ -0,0 +1,17 @@
FROM debian:bookworm
WORKDIR /app
COPY app /app
RUN apt-get update && apt-get full-upgrade -y
RUN /app/sury-php-repo.sh
RUN /app/install-dependencies.sh
ENV PORT=8080
EXPOSE 8080
CMD ["/app/launch-daemons.sh"]