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.
16 lines
322 B
Docker
16 lines
322 B
Docker
FROM docker.io/python:latest
|
|
|
|
ENV HOMESERVER_URL=https://matrix.org \
|
|
HOMESERVER_NAME=matrix.org \
|
|
MXID_PREFIX=snowstorm_ \
|
|
ADMIN_ROOM=!jaeisofjaosiefjoi:matrix.org
|
|
|
|
WORKDIR /app
|
|
|
|
COPY requirements.txt ./
|
|
RUN pip install -r requirements.txt
|
|
|
|
COPY scrape.py ./
|
|
|
|
USER nobody:nogroup
|
|
CMD [ "python", "scrape.py" ] |