-
Notifications
You must be signed in to change notification settings - Fork 526
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Run Paket without mono #2660
Comments
ohhh I see now where is the problem. Is it possible to run paket on Linux using dotnet core instead of mono? I assume that not currently because it's not compiled targeting core. :( |
We plan to do this in the future. But we need help here. We're not even
sure how bootstrapping and stuff like that will work.
Am 25.08.2017 10:00 schrieb "whitebear-gh" <notifications@github.com>:
… ohhh I see now where is the problem. Is it possible to run paket on Linux
using dotnet core instead of mono? I assume that not currently because it's
not compiled targeting core. :(
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#2660 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AADgNB0Bax_GbhGQBu9HA0M8pfBI0JPAks5sbn8IgaJpZM4PCVRF>
.
|
Just chiming in that this is the thing keeping me from using Paket. Would definitely like to be able to run Paket on OSX without mono. |
How would ypu expect it to work? Ie what jt the workflow to get bootstrapped (in netcore we don't have standalone exes anymore) |
I'm not sure I understand the problem. You can still publish a standalone app in dotnetcore (unless I'm misinformed) |
How?
Am 08.09.2017 08:41 schrieb "Craige Leeder" <notifications@github.com>:
… I'm not sure I understand the problem. You can still publish a standalone
app in dotnetcore (unless I'm misinformed)
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#2660 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AADgNKgCgqXRL5SAKJl9BIDNvHZ0LTR-ks5sgOGWgaJpZM4PCVRF>
.
|
you can do a "standalone" publish, but this will result in a big folder, not a single-file executable. And it is obviously platform dependent, you need different versions for windows / linux / osx.
To get started, you would probably need a native script (.ps1 / .sh), which downloads and unzips the required version. |
@forki, @0x53A - See this thread (nearer the end for dotnetcore2): dotnet/core#77, and this documentation: https://docs.microsoft.com/en-us/dotnet/core/deploying/deploy-with-cli |
Closing. Work for .net core paket (and support in .net core sdk) is tracked by #2875 As a note, for dockerfile, you can use |
@enricosada thanks for the note. Unfortunately I can only find two separate images for |
Description
Hi guys,
I'm trying to add Paket as my packages manager, the problem is that I'm using docker and aspnetcore-build image to build the project. Issue is when I call dotnet restore from within docker image. Apparently Paket is trying to use mono but aspnetcore-image only includes dotnet core SDK. Is there any way to handle this?
Repro steps
docker build -t myapp .
Expected behavior
image is created
Actual behavior
The text was updated successfully, but these errors were encountered: