Skip to content
Marek Fišera edited this page Feb 7, 2019 · 2 revisions

In #35 we have added support for building and distributing the application as docker image.

To build the docker image, first you need to build the application.

dotnet publish -c Release -r linux-arm -o ./bin/Release/docker

Then you need to build the image.

docker build -t FileUpload:{version} .

Clone this wiki locally