One more Dockerfile fix

This commit is contained in:
JustArchi
2017-10-07 00:16:32 +02:00
parent 24b73ec187
commit a931b11d9a

View File

@@ -6,5 +6,5 @@ RUN dotnet publish ArchiSteamFarm -c Release -o out /nologo
FROM microsoft/dotnet:2.0-runtime
WORKDIR /app
COPY --from=build-env /app/out ./
COPY --from=build-env /app/ArchiSteamFarm/out ./
ENTRYPOINT ["dotnet", "ArchiSteamFarm.dll"]