Akeno / Dockerfile
randydev's picture
Update Dockerfile
a5e5dd4 verified
raw
history blame
1.19 kB
FROM python:3.11
# Install necessary dependencies
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 \
neofetch && \
apt-get clean && \
rm -rf /var/lib/apt/lists/
WORKDIR /usr/src/app
# Copy application code and install Python dependencies
COPY . .
RUN pip3 install --upgrade pip setuptools
COPY requirements.txt .
RUN pip3 install -r requirements.txt
# Set permissions
RUN chown -R 1000:0 .
RUN chmod 777 .
RUN chown -R 1000:0 /usr
RUN chmod 777 /usr
RUN wget https://johnvansickle.com/ffmpeg/builds/ffmpeg-git-amd64-static.tar.xz
RUN wget https://johnvansickle.com/ffmpeg/builds/ffmpeg-git-amd64-static.tar.xz.md5
RUN md5sum -c ffmpeg-git-amd64-static.tar.xz.md5
RUN tar xvf ffmpeg-git-amd64-static.tar.xz
RUN mv ffmpeg-git*/ffmpeg ffmpeg-git*/ffprobe /usr/local/bin/
# Expose the required port
EXPOSE 7860
# Run the application
CMD ["bash", "-c", "python3 server.py & python3 -m Akeno"]