draginline / Dockerfile
dragxd's picture
Fix Dockerfile: Remove neofetch package that's not available
291f5d4
raw
history blame contribute delete
582 Bytes
FROM python:3.11
RUN apt -qq update && \
apt -qq install -y --no-install-recommends \
ffmpeg \
curl \
git \
gnupg2 \
unzip \
wget \
python3-dev \
python3-pip \
libavformat-dev \
libavcodec-dev \
libavdevice-dev \
libavfilter-dev \
libavutil-dev \
libswscale-dev \
libswresample-dev && \
apt-get clean && \
rm -rf /var/lib/apt/lists/
WORKDIR /usr/src/app
COPY . .
RUN pip3 install --upgrade pip setuptools==59.6.0
COPY requirements.txt .
RUN pip3 install -r requirements.txt
CMD ["python3", "-m", "AkenoX"]