2023-07-04 07:35:52 +02:00

13 lines
233 B
Docker

FROM python:3.9-slim-buster
WORKDIR /app
COPY main.py .
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
ENV INPUT_RELAY=wss://relay.nostr.band
ENV KINDS=[0,1]
ENTRYPOINT [ "python", "-u", "./main.py" ]