Skip to content

A casual example for deploying compiled projects (in this case it was made with .NET), but without the source code.

License

Notifications You must be signed in to change notification settings

denzylegacy/EasyNet

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

EasyNet

Casual example for deploying compiled projects, i.e. without any programming language.

The Dockerfile used in this project is as follows:

FROM mcr.microsoft.com/dotnet/runtime:3.1

WORKDIR /bin

COPY ./bin .

RUN chmod +x /bin/EasyNetDev

ENTRYPOINT ["/bin/EasyNetDev"]

Basically this is a project developed in .NET and uses only the runtime (v3.1) to execute the binaries.

About

A casual example for deploying compiled projects (in this case it was made with .NET), but without the source code.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published