init
continuous-integration/drone/push Build is passing Details

master
Simon Bruder 2019-11-15 21:46:02 +00:00
commit dcf443ff23
No known key found for this signature in database
GPG Key ID: 6F03E0000CC5B62F
2 changed files with 58 additions and 0 deletions

13
.drone.yml Normal file
View File

@ -0,0 +1,13 @@
kind: pipeline
name: default
steps:
- name: docker
image: plugins/docker
settings:
registry: r.sbruder.de
username:
from_secret: docker_username
password:
from_secret: docker_password
repo: r.sbruder.de/osu

45
Dockerfile Normal file
View File

@ -0,0 +1,45 @@
FROM debian:testing as base
ENV DOTNET_CLI_TELEMETRY_OPTOUT 1
RUN apt-get update \
&& apt-get -y install \
gnupg2 \
wget \
git \
&& wget -qO- https://packages.microsoft.com/keys/microsoft.asc | apt-key add - \
&& wget -qO /etc/apt/sources.list.d/microsoft.list https://packages.microsoft.com/config/debian/10/prod.list \
&& apt-get -y purge \
gnupg2 \
wget \
&& apt-get -y autoremove --purge \
&& rm -rf /var/lib/apt/lists/*
FROM base as builder
RUN apt-get update \
&& apt-get -y install dotnet-sdk-3.0
RUN git clone --depth=1 https://github.com/ppy/osu \
&& cd osu \
&& dotnet build -c Release osu.Desktop \
&& dotnet publish -c Release -r linux-x64 -o /opt/osu/ osu.Desktop
FROM base
RUN apt-get update \
&& apt-get -y install --no-install-recommends \
dotnet-runtime-3.0 \
ffmpeg \
libgl1 \
pulseaudio \
&& rm -rf /var/lib/apt/lists/* \
&& find /usr/lib/x86_64-linux-gnu/ -type l -name 'libav*.so*' -exec sh -c 'cp {} $(echo {}|sed 's/\.[^\.]*$//')' \; \
&& find /usr/lib/x86_64-linux-gnu/ -type l -name 'libswscale.so*' -exec sh -c 'cp {} $(echo {}|sed 's/\.[^\.]*$//')' \;
COPY --from=builder /opt/osu/ /opt/osu/
RUN adduser --disabled-password --gecos '' osu
USER osu
ENTRYPOINT ["/opt/osu/osu!"]