mirror of
https://github.com/pischule/memevizor.git
synced 2025-12-19 06:56:42 +00:00
6 lines
201 B
Docker
6 lines
201 B
Docker
FROM docker.io/eclipse-temurin:17
|
|
RUN apt-get update \
|
|
&& apt-get install -y ffmpeg \
|
|
&& apt-get clean \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
RUN addgroup -S spring && adduser -S spring -G spring |