vollmond/bot/Dockerfile
Thomas Renger 80dff07d94
Some checks failed
ci/woodpecker/manual/docker Pipeline failed
Maybe a docker build
2024-08-28 21:45:31 +02:00

9 lines
155 B
Docker

FROM python:3
WORKDIR /usr/src/app
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
CMD [ "python", "./testbot.py" ]