mirror of
https://github.com/mroxso/timechain-nostr-bot.git
synced 2025-03-17 13:22:02 +01:00
* initial code commit * fixes * fix prints not showing in docker * add github workflow * fix naming of docker image build workflow
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"]
|