chore: update the .NET version of the Dockerfile to match csproj - #10
Conversation
|
I think it would be nice to add containers instructions to the README, to get this running: cd src/OAuch
podman build -t oauch . # build the container
podman run -p 8443:443 -v ./db:/db oauch:latest # run on https://localhost:8443 and persist the sqlite database in ./db |
|
Done, thanks for the heads-up! |
|
Thank you for this valuable tool! Would you be interested in adding continuous integration, to create the container image automatically? Example: https://github.com/ranchcomputing/blender-cpu-image/pkgs/container/blender-cpu-image If yes, I can craft a PR to add this automatic build. |
|
BTW the project has no license! https://choosealicense.com/licenses/ I would advise GNU AGPLv3 if you want all modifications to be contributed back, for online-accessible instances. |
Yes, I would certainly appreciate this. I'm not a big Docker expert or Github Actions expert myself, so I'd definitely could use some help with that :-) |
|
I can make a PR adding a docker build step:
Let me know when you have chose a license (appears in the container manifest). |
|
The license is set. As for the PR, I think it's best to only publish when a build is tagged. Thanks! |
The docker build currently fails, because the .NET version is too old.
This PR fixes this.