11 lines
239 B
Text
11 lines
239 B
Text
|
FROM tootsuite/mastodon:v4.1.4
|
||
|
|
||
|
USER root
|
||
|
|
||
|
RUN mkdir -p /var/cache/apt/archives/partial && apt autoclean
|
||
|
RUN apt update && apt-get install -y sudo vim htop patch && rm -rf /var/lib/apt/lists/*
|
||
|
|
||
|
# Restore working dir
|
||
|
WORKDIR /opt/mastodon
|
||
|
|