openai-telegram-bot/Dockerfile

8 wiersze
192 B
Docker

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