feat: Optimize the way to get 'gosu' files (#600)

* feat: Optimize the way to get 'gosu' files

* Update Dockerfile and docker-entrypoint.sh

* change gosu copy source

---------

Co-authored-by: genteure <genteure@gmail.com>
This commit is contained in:
某亚瑟 2024-07-07 15:04:22 +08:00 committed by GitHub
parent 5f047d4e4a
commit 0a2a00ca9f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 18 additions and 23 deletions

View File

@ -1,32 +1,22 @@
FROM mcr.microsoft.com/dotnet/aspnet:6.0
ENV TZ=Asia/Shanghai
ENV GOSU_VERSION=1.17
ENV UMASK=022
ENV PUID=1000
ENV PGID=1000
ENV PUID=0
ENV PGID=0
WORKDIR /app
VOLUME [ "/rec" ]
COPY --from=tianon/gosu:1.17 /gosu /usr/local/bin/
COPY docker-entrypoint.sh /usr/local/bin/docker-entrypoint.sh
COPY ./BililiveRecorder.Cli/bin/docker_out /app
RUN apt-get update && \
apt-get install -y wget && \
rm -rf /var/lib/apt/lists/* && \
useradd -r -g users user && \
chmod a+x /usr/local/bin/docker-entrypoint.sh && \
RUN chmod a+x /usr/local/bin/docker-entrypoint.sh && \
chmod -R 777 /app && \
ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && \
echo $TZ > /etc/timezone
ARG TARGETPLATFORM
RUN if [ "$TARGETPLATFORM" = "linux/amd64" ]; then wget -O /usr/local/bin/gosu https://github.com/tianon/gosu/releases/download/$GOSU_VERSION/gosu-amd64; fi; if [ "$TARGETPLATFORM" = "linux/arm64" ]; then wget -O /usr/local/bin/gosu https://github.com/tianon/gosu/releases/download/$GOSU_VERSION/gosu-arm64; fi; if [ "$TARGETPLATFORM" = "linux/arm/v7" ]; then wget -O /usr/local/bin/gosu https://github.com/tianon/gosu/releases/download/$GOSU_VERSION/gosu-armhf; fi
RUN chmod +x /usr/local/bin/gosu
EXPOSE 2356/tcp
ENTRYPOINT ["/usr/local/bin/docker-entrypoint.sh"]

View File

@ -2,14 +2,19 @@
set -e
umask $UMASK
umask "$UMASK"
usermod -u $PUID user
groupmod -g $PGID users
if [ "$(id -u)" != "0" ]; then
echo "Skipped changing user and group because current user is not root."
exec dotnet /app/BililiveRecorder.Cli.dll "$@"
fi
chown -R user:users /app
chown -R user:users /rec
PUID=${PUID:-0}
PGID=${PGID:-0}
export HOME=/home/user
exec /usr/local/bin/gosu user dotnet /app/BililiveRecorder.Cli.dll $@
if [ "${PUID}" != "0" ] && [ "${PGID}" != "0" ]; then
chown -R "${PUID}":"${PGID}" /rec
exec /usr/local/bin/gosu "${PUID}":"${PGID}" dotnet /app/BililiveRecorder.Cli.dll "$@"
else
exec dotnet /app/BililiveRecorder.Cli.dll "$@"
fi