Spaces:
coolmanx
/
Running

tvbox / Dockerfile
coolmanx's picture
Update Dockerfile
e4163c8 verified
raw
history blame
2.14 kB
FROM ubuntu:22.04
# Install necessary tools
RUN apt-get update && apt-get install -y \
tar \
gzip \
file \
jq \
curl \
sed \
aria2 \
&& rm -rf /var/lib/apt/lists/*
# Set up a new user named "user" with user ID 1000
RUN useradd -m -u 1000 user
# Switch to the "user" user
USER user
# Set home to the user's home directory
ENV HOME=/home/user \
PATH=/home/user/.local/bin:$PATH
# Set the working directory to the user's home directory
WORKDIR $HOME/alist
RUN mkdir -p $HOME/alist/data
# Create data/config.json file with database configuration
RUN echo '{\
"force": false,\
"address": "0.0.0.0",\
"port": 5244,\
"scheme": {\
"https": false,\
"cert_file": "",\
"key_file": ""\
},\
"cache": {\
"expiration": 60,\
"cleanup_interval": 120\
},\
"database": {\
"type": "mysql",\
"host": "ENV_MYSQL_HOST",\
"port": ENV_MYSQL_PORT,\
"user": "ENV_MYSQL_USER",\
"password": "ENV_MYSQL_PASSWORD",\
"name": "ENV_MYSQL_DATABASE"\
}\
}' > $HOME/alist/data/config.json
COPY --chown=user . $HOME/alist
RUN chmod +x $HOME/alist/tvbox
# CMD ["bash", "alist", "server"]
#CMD cd $HOME/alist && ./tvbox server
#EXPOSE 5244
# Create a startup script that runs Alist and Aria2
RUN echo '#!/bin/bash\n\
sed -i "s/ENV_MYSQL_HOST/${MYSQL_HOST:-localhost}/g" $HOME/alist/data/config.json\n\
sed -i "s/ENV_MYSQL_PORT/${MYSQL_PORT:-3306}/g" $HOME/alist/data/config.json\n\
sed -i "s/ENV_MYSQL_USER/${MYSQL_USER:-root}/g" $HOME/alist/data/config.json\n\
sed -i "s/ENV_MYSQL_PASSWORD/${MYSQL_PASSWORD:-password}/g" $HOME/alist/data/config.json\n\
sed -i "s/ENV_MYSQL_DATABASE/${MYSQL_DATABASE:-alist}/g" $HOME/alist/data/config.json\n\
aria2c --enable-rpc --rpc-listen-all --rpc-allow-origin-all --rpc-listen-port=6800 --daemon\n\
$HOME/alist/tvbox server --data $HOME/alist/data' > $HOME/alist/start.sh && \
chmod +x $HOME/alist/start.sh
# Set the command to run when the container starts
CMD ["/bin/bash", "-c", "/home/user/alist/start.sh"]
# Expose the default Alist port
EXPOSE 5244 6800