mirror of
https://github.com/mroxso/timechain-nostr-bot.git
synced 2025-03-17 13:22:02 +01:00
7 lines
139 B
Docker
7 lines
139 B
Docker
|
FROM python:3.9
|
||
|
RUN pip install --upgrade pip
|
||
|
COPY . /app
|
||
|
WORKDIR /app
|
||
|
RUN pip install -r requirements.txt
|
||
|
CMD ["python", "-u" ,"main.py"]
|