mirror of
https://git.pleroma.social/pleroma/pleroma.git
synced 2024-11-11 11:31:32 +00:00
9 lines
321 B
Docker
9 lines
321 B
Docker
|
FROM elixir:1.17.1-otp-26
|
||
|
|
||
|
# Single RUN statement, otherwise intermediate images are created
|
||
|
# https://docs.docker.com/develop/develop-images/dockerfile_best-practices/#run
|
||
|
RUN apt-get update &&\
|
||
|
apt-get install -y libmagic-dev cmake libimage-exiftool-perl ffmpeg &&\
|
||
|
mix local.hex --force &&\
|
||
|
mix local.rebar --force
|