discover-mastodon-servers/Dockerfile

12 lines
254 B
Text
Raw Permalink Normal View History

2024-01-29 14:08:33 +01:00
FROM python:3
WORKDIR /usr/src/app
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
2024-01-29 14:17:30 +01:00
RUN pip install .
2024-01-29 14:34:54 +01:00
VOLUME config
2024-01-29 14:08:33 +01:00
2024-01-29 14:34:54 +01:00
CMD [ "python", "/usr/local/bin/discover_mastodon_servers.py", "--config", "/config/config.conf" ]