22 lines
555 B
Docker
22 lines
555 B
Docker
FROM python:3.12.2-slim-bookworm as builder
|
|
LABEL authors="bacon"
|
|
WORKDIR /app
|
|
|
|
COPY requirements.txt /app
|
|
RUN pip wheel install \
|
|
--no-cache-dir -q \
|
|
--no-deps --wheel-dir /app/wheels \
|
|
-r requirements.txt
|
|
|
|
FROM python:3.12.2-slim-bookworm as runner
|
|
WORKDIR /app
|
|
|
|
COPY --from=builder /app/wheels /wheels
|
|
RUN apt-get update -qq && \
|
|
apt-get install -qq --no-install-recommends ffmpeg -y && \
|
|
apt-get clean -qq autoclean && \
|
|
pip install --no-cache -q /wheels/*
|
|
COPY src/ /app
|
|
|
|
ENTRYPOINT ["python", "bot.py"]
|
|
#ENTRYPOINT ["ffmpeg"] |