feat: add actiontext and trix editor

This commit is contained in:
Philipp Rothmann 2023-08-04 10:52:30 +02:00 committed by Philipp Rothmann
parent 9282590c06
commit c4a53caf52
11 changed files with 94 additions and 11 deletions

View file

@ -49,9 +49,10 @@ RUN export DATABASE_URL=mysql2://localhost/temp?encoding=utf8 && \
rm -Rf /var/lib/apt/lists/* /var/cache/apt/*
# Make relevant dirs and files writable for app user
RUN mkdir -p tmp && \
RUN mkdir -p tmp storage && \
chown nobody config/app_config.yml && \
chown nobody tmp
chown nobody tmp && \
chown nobody storage
# Run app as unprivileged user
USER nobody