Files
ortools-clone/makefiles/docker/archlinux/dotnet.Dockerfile

18 lines
328 B
Docker
Raw Permalink Normal View History

FROM ortools/make:archlinux_swig AS env
2022-06-08 09:17:01 +02:00
RUN pacman -Syu --noconfirm dotnet-sdk
# Trigger first run experience by running arbitrary cmd
RUN dotnet --info
FROM env AS devel
2020-04-13 17:48:44 +02:00
WORKDIR /home/project
COPY . .
FROM devel AS build
RUN make dotnet
FROM build AS test
RUN make test_dotnet
FROM build AS package
RUN make package_dotnet