timechain-nostr-bot/Dockerfile
PascalR c5949f7526
dev2main (#1)
* initial code commit

* fixes

* fix prints not showing in docker

* add github workflow

* fix naming of docker image build workflow
2023-04-12 16:06:00 +02:00

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"]