Special-IO/raspberryPi/Dockerfile

11 lines
159 B
Docker
Raw Normal View History

2023-10-30 23:15:40 +01:00
FROM python:3.9.18
WORKDIR /usr/src/app
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
COPY src .
CMD ["python", "./main.py"]