-
Notifications
You must be signed in to change notification settings - Fork 12
/
arm64v8.Dockerfile
34 lines (30 loc) · 1.19 KB
/
arm64v8.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
26
27
28
29
30
31
32
33
34
# This is a manifest image, will pull the image with the same arch as the builder machine
FROM mcr.microsoft.com/dotnet/core/sdk:3.1.202 AS builder
ENV DOTNET_CLI_TELEMETRY_OPTOUT=1
ENV LC_ALL en_US.UTF-8
RUN apt-get update \
&& apt-get install -qq --no-install-recommends qemu qemu-user-static qemu-user binfmt-support
WORKDIR /source
COPY NDLC/NDLC.csproj NDLC/NDLC.csproj
COPY NDLC.CLI/NDLC.CLI.csproj NDLC.CLI/NDLC.CLI.csproj
RUN cd NDLC.CLI && dotnet restore
COPY NDLC/. NDLC/.
COPY NDLC.CLI/. NDLC.CLI/.
ARG CONFIGURATION_NAME=Release
RUN cd NDLC.CLI && dotnet publish \
-p:PublishReadyToRun=true \
-r linux-arm64 \
--output /app/ --configuration ${CONFIGURATION_NAME}
# Force the builder machine to take make an arm runtime image. This is fine as long as the builder does not run any program
FROM mcr.microsoft.com/dotnet/runtime-deps:3.1-buster-slim-arm64v8
COPY --from=builder /usr/bin/qemu-aarch64-static /usr/bin/qemu-aarch64-static
ENV LC_ALL en_US.UTF-8
ENV LANG en_US.UTF-8
WORKDIR /root/.ndlc
WORKDIR /app
ENV DOTNET_SYSTEM_GLOBALIZATION_INVARIANT=true
ENV NDLC_DATADIR=/root/.ndlc
ENV DOTNET_CLI_TELEMETRY_OPTOUT=1
VOLUME /root/.ndlc
COPY --from=builder "/app" .
ENTRYPOINT ["/app/ndlc-cli"]