Skip to content

Commit 46507bc

Browse files
committed
Readme update
1 parent 51b4a5a commit 46507bc

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
FROM mcr.microsoft.com/dotnet/sdk:5.0-alpine as base
1+
FROM mcr.microsoft.com/dotnet/aspnet:6.0 as base
22

33
# Copy everything else and build
44
COPY ./ /opt/blogifier
55
WORKDIR /opt/blogifier
66

77
RUN ["dotnet","publish","./src/Blogifier/Blogifier.csproj","-o","./outputs" ]
88

9-
FROM mcr.microsoft.com/dotnet/aspnet:5.0-alpine as run
9+
FROM mcr.microsoft.com/dotnet/aspnet:6.0 as run
1010
COPY --from=base /opt/blogifier/outputs /opt/blogifier/outputs
1111
WORKDIR /opt/blogifier/outputs
1212
ENTRYPOINT ["dotnet", "Blogifier.dll"]

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
<h3 align="center">Blogifier</h3>
99
<p align="center">
10-
Blogifier is an open-source publishing platform written in .NET 5.0 and Blazor WebAssembly.<br>
10+
Blogifier is an open-source publishing platform written in ASP.NET and Blazor WebAssembly.<br>
1111
Right now with Blogifier, you can make a personal blog, and more features are under development.<br><br>
1212
<a href="https://blogifier.net/"><b>Official Website »</b></a>
1313
&nbsp;&nbsp;
@@ -31,7 +31,7 @@ The latest stable source code is in the [master branch](https://github.com/blogi
3131

3232
This version is built and compiled, and ready to use:
3333

34-
1. .NET Core Runtime 5.0 or above must be installed on your host server.
34+
1. .NET Core Runtime (currently 6.0) must be installed on your host server.
3535
2. [Download](https://github.com/blogifierdotnet/Blogifier/releases) the latest release.
3636
3. Unzip and copy to your host server.<br>
3737
4. Restart your website.
@@ -43,7 +43,7 @@ This version is built and compiled, and ready to use:
4343
## Development
4444
If you want to customize the Blogifier, or contribute:
4545

46-
1. [Download](https://dotnet.microsoft.com/download/dotnet/5.0) and Install .NET SDK 5.0 or above.
46+
1. [Download](https://dotnet.microsoft.com/download/dotnet) and Install .NET SDK.
4747
2. Download, fork, or clone the repository.
4848
3. Open the project with your favorite IDE (VS Code, Visual Studio, Atom, etc).
4949
4. Run the app with your IDE or these commands:

0 commit comments

Comments
 (0)