16 lines
189 B
Docker
16 lines
189 B
Docker
FROM python:3
|
|
RUN apk add ffmpeg
|
|
|
|
WORKDIR /usr/src/app
|
|
|
|
COPY requirements.txt ./
|
|
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
COPY . .
|
|
|
|
RUN mv .env.example .env
|
|
|
|
CMD python bot.py
|
|
|