All checks were successful
continuous-integration/drone/pr Build is passing
* global.json sdk value will now match 3.1.whatever * rm the now-redundant sed both from the ci pipeline and Dockerfile* * limit ci pipeline runs to single build for an event. e.g. on a pr, run a single build instead of both a pr build and a push build * edit Makefile to force --no-cache builds
21 lines
455 B
Docker
21 lines
455 B
Docker
FROM mcr.microsoft.com/dotnet/core/sdk:3.1-alpine
|
|
ENV UID 1000
|
|
ENV GID 1000
|
|
ENV UNAME unpriv
|
|
RUN adduser -D -u ${UID} -g ${GID} -H ${UNAME} -h /src
|
|
WORKDIR /src
|
|
|
|
COPY *.csproj ./
|
|
RUN dotnet restore
|
|
|
|
COPY . ./
|
|
RUN dotnet publish -c Release -o bin/out
|
|
|
|
FROM mcr.microsoft.com/dotnet/aspnet:3.1
|
|
WORKDIR /App
|
|
COPY --from=0 /src/bin/out/ .
|
|
RUN chown -R ${UID}:${GID} ./
|
|
USER ${UNAME}
|
|
ENV ASPNETCORE_ENVIRONMENT=Release
|
|
ENTRYPOINT ["dotnet", "pwt-0x01-ng.dll"]
|