2024-07-04 15:15:00 -04:00
|
|
|
FROM ghcr.io/mastodon/mastodon:v4.2.9
|
2023-07-15 21:12:25 -04:00
|
|
|
|
|
|
|
USER root
|
|
|
|
|
|
|
|
RUN mkdir -p /var/cache/apt/archives/partial && apt autoclean
|
2023-07-17 16:03:30 -04:00
|
|
|
RUN apt update && apt-get install -y sudo vim htop git curl && rm -rf /var/lib/apt/lists/*
|
2023-07-15 21:12:25 -04:00
|
|
|
|
2024-03-22 23:21:39 -04:00
|
|
|
VOLUME [ "/opt/my-mastodon" ]
|
|
|
|
|
|
|
|
RUN \
|
|
|
|
cp -r /opt/mastodon /opt/my-mastodon; \
|
|
|
|
ln -s /opt/my-mastodon /my-mastodon
|
|
|
|
|
|
|
|
WORKDIR /opt/my-mastodon
|
|
|
|
|
|
|
|
# bundle exec rails assets:precompile
|