You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
292 B
Docker
12 lines
292 B
Docker
5 years ago
|
FROM docker.io/python:alpine
|
||
|
|
||
|
ENV HOMESERVER_URL=https://matrix.org \
|
||
|
HOMESERVER_NAME=matrix.org \
|
||
|
MXID_PREFIX=snowstorm_ \
|
||
|
ADMIN_ROOM=!jaeisofjaosiefjoi:matrix.org
|
||
|
|
||
|
WORKDIR /app
|
||
|
COPY requirements.txt scrape.py ./
|
||
|
RUN pip install -r requirements.txt
|
||
|
|
||
|
CMD [ "python", "scrape.py" ]
|