[Feature] Preprocessing and dev QoL changes (#1)

Reviewed-on: #1
Co-authored-by: bivashy <botyrbojey@gmail.com>
Co-committed-by: bivashy <botyrbojey@gmail.com>
This commit is contained in:
2025-12-24 18:48:02 +00:00
committed by bivashy
parent 7c85e05e02
commit 8be1dd8a53
23 changed files with 963 additions and 44 deletions

View File

@ -33,8 +33,9 @@ RUN groupadd --gid 1000 spring-app \
&& useradd --uid 1000 --gid spring-app --shell /bin/bash --create-home spring-app
RUN apt-get update && \
apt-get install -y --no-install-recommends ca-certificates && \
rm -rf /var/lib/apt/lists/*
apt-get install -y --no-install-recommends \
ca-certificates \
ffmpeg
USER spring-app:spring-app
WORKDIR /opt/workspace