10 lines
257 B
Docker
10 lines
257 B
Docker
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 git curl && rm -rf /var/lib/apt/lists/*
|
|
|
|
# Restore working dir
|
|
# USER mastodon
|
|
WORKDIR /opt/mastodon
|