-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile
25 lines (21 loc) · 928 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
# https://hub.docker.com/_/microsoft-dotnet-core
FROM mcr.microsoft.com/dotnet/sdk:5.0-alpine AS build-publish
WORKDIR /src
# copy csproj and restore as distinct layers
COPY *.csproj .
RUN dotnet restore --runtime alpine-x64
# copy everything else and build app
COPY . .
RUN dotnet publish -c release -o /app --runtime alpine-x64 --self-contained true /p:PublishTrimmed=true /p:PublishReadyToRun=true /p:PublishReadyToRunShowWarnings=false
# the echos are squashing 25Mo of useless kafka lib dedicated to distrib other than alpine
RUN echo "" > /app/centos7-librdkafka.so
RUN echo "" > /app/debian9-librdkafka.so
FROM mcr.microsoft.com/dotnet/runtime-deps:5.0-alpine as release
LABEL author="Lefebsy" \
info="dotNetCore5.0 - Simple REST Json webservice feeding a kafka producer"
WORKDIR /app
COPY --from=build-publish /app ./
ENV ASPNETCORE_URLS "http://*:8080"
EXPOSE 8080/tcp
USER 1000
ENTRYPOINT ["/app/Json2Kafka"]