mirror of
https://github.com/nsnail/Ocelot.git
synced 2025-04-20 01:02:50 +08:00
12 lines
575 B
Docker
12 lines
575 B
Docker
# this is the dockerfile that create the ocelot build container
|
|
# build with the docker-build.sh file in this folder
|
|
FROM mcr.microsoft.com/dotnet/sdk:5.0-focal AS build
|
|
|
|
RUN apt update
|
|
RUN apt install -y dirmngr gnupg apt-transport-https ca-certificates software-properties-common
|
|
RUN apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF
|
|
RUN apt-add-repository 'deb https://download.mono-project.com/repo/ubuntu stable-focal main'
|
|
RUN apt install -y mono-devel
|
|
RUN apt install -y make
|
|
RUN apt install -y build-essential
|