feature/gitea-actions #2

Merged
RogerSik merged 15 commits from feature/gitea-actions into main 2023-07-30 20:40:13 +02:00
2 changed files with 7 additions and 4 deletions
Showing only changes of commit 127be7c42a - Show all commits

2
.hadolint.yaml Normal file
View File

@@ -0,0 +1,2 @@
ignored:
- DL3008 # no need to pin versions

View File

@@ -1,10 +1,11 @@
# https://hub.docker.com/_/monica # https://hub.docker.com/_/monica
FROM monica:4 FROM monica:4
RUN \
# Use the default production configuration # Use the default production configuration
RUN mv "$PHP_INI_DIR/php.ini-production" "$PHP_INI_DIR/php.ini" mv "$PHP_INI_DIR/php.ini-production" "$PHP_INI_DIR/php.ini" && \
# increase php upload limit # increase php upload limit
RUN sed -i 's/upload_max_filesize = 2M/upload_max_filesize = 50M/' "$PHP_INI_DIR/php.ini" sed -i 's/upload_max_filesize = 2M/upload_max_filesize = 50M/' "$PHP_INI_DIR/php.ini"
# supervisord dependencies # supervisord dependencies
RUN apt-get update && \ RUN apt-get update && \