discover-mastodon-servers/Dockerfile

12 lines
227 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:12:23 +01:00
RUN python3 setup.py /usr/src/app/install
2024-01-29 14:08:33 +01:00
# CMD [ "python", "./your-daemon-or-script.py" ]
CMD [ "sh" ]