updating structure

This commit is contained in:
Your Name
2024-08-25 18:34:01 +03:00
parent dbfb2c03bb
commit af9260a35c
23 changed files with 7546 additions and 65 deletions

12
action.Dockerfile Normal file
View File

@@ -0,0 +1,12 @@
ARG PHP_VERSION=8.3.10-1
FROM rosven9856/php:$PHP_VERSION
COPY . /usr/bin/app
WORKDIR /usr/bin/app
RUN composer install
VOLUME ["/usr/bin/app"]
ENTRYPOINT ["php", "-f", "/usr/bin/app/app.php"]