Dockerfile.dev edited online with Bitbucket

This commit is contained in:
Nutchayut Kanjanakuladit
2023-08-02 07:17:01 +00:00
parent 56430a5db4
commit 76ca872c3c

View File

@@ -1,7 +1,7 @@
FROM registry.71dev.com/dotnetsdk:3.1 as build-env
WORKDIR /source
COPY . .
RUN dotnet restore --configfile nuget.config
RUN dotnet restore --configfile nuget.config --disable-parallel
RUN dotnet build
RUN dotnet publish -o /publish --configuration Release;