Files
carsten 4be5d4c325 Reorg code and tests
DON'T use main.py
2024-02-24 12:02:12 +00:00

13 lines
363 B
Docker

FROM ubuntu:22.04
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get clean \
&& apt-get update \
&& apt-get upgrade -y
RUN apt-get install -y python3 python3-pip build-essential
COPY requirements.txt /tmp/requirements.txt
RUN pip3 install -r /tmp/requirements.txt
# no CMD by default becuase its too dangerous
# to start main.py without checking it before!