Files
Discord-Twitch-Live-Notifier/Dockerfile
2023-03-03 20:38:17 +01:00

13 lines
286 B
Docker

FROM python:3.11.2
COPY ./ /
WORKDIR /
RUN apt-get update
RUN apt-get -y dist-upgrade
RUN apt-get -y install python3-pip curl
RUN curl -sSL https://install.python-poetry.org | python3 -
ENV PATH=/root/.local/bin:$PATH
RUN poetry install
CMD ["poetry", "run", "python", "app/main.py"]