Special-IO/raspberryPi/Dockerfile

16 lines
241 B
Docker
Raw Normal View History

2023-10-30 23:15:40 +01:00
FROM python:3.9.18
EXPOSE 5000/tcp
# Support not using an external database
RUN ["mkdir", "/data"]
2023-10-30 23:15:40 +01:00
WORKDIR /usr/src/app
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
COPY src .
CMD ["python", "./main.py"]