forked from microsoft/component-detection
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
25 lines (22 loc) · 765 Bytes
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
FROM mcr.microsoft.com/dotnet/sdk:6.0-cbl-mariner2.0@sha256:0a55184c1bea8da25a6b9ff0333f5e72aca18a4e76c85e8bcec3ebcf789f1bed AS build
WORKDIR /app
COPY . .
RUN dotnet publish -c Release -o out \
-r linux-x64 \
-p:MinVerSkip=true \
--self-contained true \
-p:PublishReadyToRun=false \
-p:IncludeNativeLibrariesForSelfExtract=true \
-p:PublishSingleFile=true \
./src/Microsoft.ComponentDetection
FROM mcr.microsoft.com/dotnet/runtime-deps:6.0-cbl-mariner2.0@sha256:7b8cfde0c621633fa2dfae8265f4c3a71341a2228a99ef80954ef1746f6ec4ab AS runtime
WORKDIR /app
COPY --from=build /app/out ./
RUN tdnf install -y \
golang \
moby-engine \
maven \
pnpm \
poetry \
python
ENTRYPOINT ["/app/Microsoft.ComponentDetection"]