21 lines
430 B
Docker
21 lines
430 B
Docker
# ACID RADIO - Developed by acidvegas in Python (https://git.supernets.org/acidvegas/acid-radio)
|
|
# acid-radio/Dockerfile
|
|
|
|
FROM python:3-slim
|
|
|
|
RUN apt-get update \
|
|
&& apt-get install -y --no-install-recommends ffmpeg \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
WORKDIR /app
|
|
|
|
COPY requirements.txt .
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
COPY server.py .
|
|
COPY static/ ./static/
|
|
|
|
EXPOSE 7000
|
|
|
|
CMD ["python", "-u", "server.py"]
|