-
-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #162 from dymaptic/develop
Prepare for 2.1.0 release
- Loading branch information
Showing
220 changed files
with
22,786 additions
and
19,365 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
FROM mcr.microsoft.com/dotnet/sdk:7.0-alpine AS build-env | ||
WORKDIR /App | ||
|
||
# Add NPM | ||
RUN apk add --update npm | ||
|
||
# Copy everything | ||
COPY . ./ | ||
|
||
# Restore as distinct layers | ||
RUN dotnet restore samples/dymaptic.GeoBlazor.Core.Sample.Wasm/dymaptic.GeoBlazor.Core.Sample.Wasm.csproj | ||
|
||
# Build and publish a release | ||
RUN dotnet publish samples/dymaptic.GeoBlazor.Core.Sample.Wasm/dymaptic.GeoBlazor.Core.Sample.Wasm.csproj -c Release -o out | ||
|
||
# Build runtime image | ||
FROM mcr.microsoft.com/dotnet/aspnet:7.0.3-alpine3.17 | ||
EXPOSE 5000 | ||
WORKDIR /App | ||
COPY --from=build-env /App/out . | ||
RUN ls -la | ||
|
||
# Add Dumb-init | ||
RUN apk upgrade -U -a \ | ||
&& apk add dumb-init \ | ||
&& rm -rf /var/cache/* \ | ||
&& mkdir /var/cache/apk \ | ||
&& mkdir /temp | ||
|
||
# set up user | ||
RUN addgroup -S geoblazor && adduser -S geoblazor -G geoblazor | ||
RUN chmod -R 777 /temp | ||
USER geoblazor | ||
|
||
ENTRYPOINT ["dumb-init", "dotnet", "dymaptic.GeoBlazor.Core.Sample.Wasm.dll", "urls=http://0.0.0.0:5000/"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,12 @@ | ||
# GeoBlazor Documentation | ||
|
||
This folder creates a GitHub Pages website with Jekyll. | ||
This folder creates a GitHub Pages website with Jekyll. | ||
|
||
To run Jekyll locally, you need to follow the [Jekyll Installation Docs](http://jekyllrb.com/docs/installation/). | ||
Then run `bundle exec jekyll serve --config _config_testing.yml` from this folder. | ||
|
||
## XML Class Docs | ||
The `pages\classes` documents are auto-generated from the XML comments in `dymaptic.GeoBlazor.Core`. To update these | ||
|
||
The `pages\classes` documents are auto-generated from the XML comments in `dymaptic.GeoBlazor.Core`. To update these | ||
documents, add your XML comments in the code, build the Core project, and commit the added files in `pages\classes`. | ||
This should be kept up to date with changes in the core library at all times. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.