discover-mastodon-servers/Dockerfile

12 lines
203 B
Text
Raw 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:08:33 +01:00
# CMD [ "python", "./your-daemon-or-script.py" ]
CMD [ "sh" ]