WIP: Next major version - AthenaHR v2 #1

Draft
miguel456 wants to merge 46 commits from develop into main
8 changed files with 461 additions and 297 deletions
Showing only changes of commit bced142657 - Show all commits

4
Dockerfile Normal file → Executable file
View File

@@ -24,6 +24,10 @@ RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local
RUN composer update && composer install
RUN npm ci
# Set Laravel's permissions, though this could be done in the COPY command directly
RUN chown -R www-data:www-data /var/www/html/storage
RUN chmod -R 755 /var/www/html/storage
EXPOSE 9000
CMD ["php-fpm"]