Files
node-26/drb-edge-node/Dockerfile
T
Logan 01496ea9e7
CI / lint (push) Failing after 42s
CI / test (push) Failing after 45s
Build edge-node / build (push) Failing after 1m42s
Bump version, add builds, add setup
2026-04-20 00:14:50 -04:00

19 lines
376 B
Docker

FROM python:3.14-slim
RUN apt-get update && apt-get install -y \
ffmpeg \
libopus0 \
libopus-dev \
libpulse0 \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY app/ ./app/
COPY tests/ ./tests/
CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "8080", "--reload"]