Build osu with version argument
This commit is contained in:
parent
ad15a2a516
commit
49c3bf282b
14
Dockerfile
14
Dockerfile
|
@ -10,8 +10,14 @@ ARG CACHEBUST=1
|
|||
RUN OSU_VERSION=$(curl -s https://api.github.com/repos/ppy/osu/releases/latest | jq -r .tag_name) \
|
||||
&& git clone --depth=1 --single-branch -b ${OSU_VERSION} https://github.com/ppy/osu \
|
||||
&& cd osu \
|
||||
&& dotnet publish -c Release -r linux-x64 --self-contained true -o /opt/osu/ osu.Desktop /p:PublishTrimmed=true \
|
||||
&& echo "Version ${OSU_VERSION}, Built on $(date '+%Y-%m-%d %H:%M')" > /opt/osu/version
|
||||
&& dotnet publish \
|
||||
-c Release \
|
||||
-r linux-x64 \
|
||||
--self-contained true \
|
||||
-o /opt/osu/ \
|
||||
-p:PublishTrimmed=true \
|
||||
-p:Version=${OSU_VERSION} \
|
||||
osu.Desktop
|
||||
|
||||
FROM mcr.microsoft.com/dotnet/core/runtime-deps
|
||||
|
||||
|
@ -29,6 +35,4 @@ COPY --from=builder /opt/osu/ /opt/osu/
|
|||
RUN adduser --disabled-password --gecos '' osu
|
||||
USER osu
|
||||
|
||||
COPY entrypoint.sh /usr/local/bin/
|
||||
|
||||
ENTRYPOINT ["entrypoint.sh"]
|
||||
ENTRYPOINT ["/opt/osu/osu!"]
|
||||
|
|
|
@ -1,8 +0,0 @@
|
|||
#!/bin/sh
|
||||
cat << EOF
|
||||
┏━┓┏━┓╻ ╻╻
|
||||
┃ ┃┗━┓┃ ┃╹
|
||||
┗━┛┗━┛┗━┛╹
|
||||
EOF
|
||||
cat /opt/osu/version
|
||||
exec /opt/osu/osu!
|
Loading…
Reference in a new issue