trmnl-bring-plugin/Dockerfile

10 lines
159 B
Text
Raw Permalink Normal View History

2025-02-12 01:04:27 -05:00
FROM python:3
WORKDIR /usr/src/app
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
CMD [ "python", "-u", "./main.py" ]