againmusic / Dockerfile
dragxd's picture
fix; docker
1c15792
raw
history blame contribute delete
315 Bytes
FROM nikolaik/python-nodejs:python3.10-nodejs20
RUN apt-get update \
&& apt-get install -y --no-install-recommends ffmpeg \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
COPY . /app/
WORKDIR /app/
RUN pip3 install --no-cache-dir -U -r requirements.txt
RUN chmod +x start
CMD ["bash", "start"]