Ocelot/docker/Dockerfile.base
TomPallister 730c940cd8 wip
2020-11-24 08:18:30 +00:00

12 lines
578 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-complete
RUN apt install -y make
RUN apt install -y build-essential