openai-telegram-bot/Dockerfile

8 wiersze
195 B
Docker

FROM python:3-bullseye
RUN apt update && apt install -y ffmpeg
WORKDIR /app
COPY ./main.py /app
COPY ./requirements.txt /app
RUN pip install -r requirements.txt
CMD [ "python3", "/app/main.py" ]