I want to create a docker image for code I have written in .NET Core (C# Visual Studio 2017), that can be run on Linux.
The steps - I create a new file, such as hello world:
using System;
namespace myApp
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello World!");
}
}
}
The docker file (for Windows), which had been tested and works:
FROM microsoft/dotnet:2.1-sdk
WORKDIR /app
# copy csproj and restore as distinct layers
COPY *.csproj ./
RUN dotnet restore
# copy and build everything else
COPY . ./
RUN dotnet publish -c Release -o out
ENTRYPOINT ["dotnet", "out/myApp.dll"]
The docker file for linux:
FROM microsoft/aspnetcore:2.0
WORKDIR /app
COPY ./publish .
ENTRYPOINT ["dotnet", "Receive.dll"]
The above does not work well.
When I run (in command prompt. Linux container):
docker build . -t myapp_linux
I got the message:
COPY failed: stat /var/lib/docker/tmp/docker-builder786597608/publish: no such file or directory
Also, tried changing to configuration to something like:
FROM microsoft/aspnetcore:2.0
WORKDIR /app
# copy csproj and restore as distinct layers
COPY *.csproj ./
RUN dotnet restore
# copy and build everything else
COPY . ./
RUN dotnet publish -c Release -o out
ENTRYPOINT ["dotnet", "Receive.dll"]
The above doesn't work either, and I got the message:
Did you mean to run dotnet SDK commands? Please install dotnet SDK from: http://go.microsoft.com/fwlink/?LinkID=798306&clcid=0x409