discover-mastodon-servers/Dockerfile

13 lines
231 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
RUN pip install --no-cache-dir /usr/src/app/
COPY . .
# CMD [ "python", "./your-daemon-or-script.py" ]
CMD [ "sh" ]