Skip to content

Commit

Permalink
Readme update
Browse files Browse the repository at this point in the history
  • Loading branch information
rxtur committed Feb 5, 2022
1 parent 51b4a5a commit 46507bc
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
@@ -1,12 +1,12 @@
FROM mcr.microsoft.com/dotnet/sdk:5.0-alpine as base
FROM mcr.microsoft.com/dotnet/aspnet:6.0 as base

# Copy everything else and build
COPY ./ /opt/blogifier
WORKDIR /opt/blogifier

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

FROM mcr.microsoft.com/dotnet/aspnet:5.0-alpine as run
FROM mcr.microsoft.com/dotnet/aspnet:6.0 as run
COPY --from=base /opt/blogifier/outputs /opt/blogifier/outputs
WORKDIR /opt/blogifier/outputs
ENTRYPOINT ["dotnet", "Blogifier.dll"]
6 changes: 3 additions & 3 deletions README.md
Expand Up @@ -7,7 +7,7 @@

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

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

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

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

0 comments on commit 46507bc

Please sign in to comment.