This commit is contained in:
Wolfgang Hottgenroth 2021-11-22 12:26:40 +01:00
parent 49ab3876d2
commit 627c79e604
2 changed files with 19 additions and 0 deletions

5
.gitlab-ci.yml Normal file

@ -0,0 +1,5 @@
include:
- project: dockerized/commons
ref: master
file: gitlab-ci-template.yml

14
Dockerfile Normal file

@ -0,0 +1,14 @@
FROM registry.hottis.de/dockerized/base-build-env:1.5.1-bullseye
LABEL Maintainer="Wolfgang Hottgenroth <wolfgang.hottgenroth@icloud.com>"
RUN \
apt update -y && \
apt upgrade -y && \
curl https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor > /etc/apt/trusted.gpg.d/microsoft.asc.gpg && \
curl https://packages.microsoft.com/config/debian/11/prod.list > /etc/apt/sources.list.d/microsoft-prod.list && \
chown root:root /etc/apt/trusted.gpg.d/microsoft.asc.gpg && \
chown root:root /etc/apt/sources.list.d/microsoft-prod.list && \
apt update -y && \
apt install -y dotnet-sdk-5.0