Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion GitHubReleaseNotes.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
https://github.com/StefH/GitHubReleaseNotes

GitHubReleaseNotes.exe . --output ReleaseNotes.md --skip-empty-releases --language en --version 1.0.4.18
GitHubReleaseNotes.exe . --output ReleaseNotes.md --skip-empty-releases --language en --version 1.0.4.19
2 changes: 1 addition & 1 deletion StandAlone.NETCoreApp/Dockerfile.nano
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ COPY *.cs ./
RUN dotnet publish -c Release -r win-x64 -o out

# build runtime image
FROM microsoft/nanoserver:10.0.14393.2485
FROM microsoft/nanoserver:10.0.14393.2551
WORKDIR /app
COPY --from=build-env /app/out ./
EXPOSE 80
Expand Down
1 change: 1 addition & 0 deletions StandAlone.NETCoreApp/Program.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
using System;
using System.Linq;
using System.Threading;
using WireMock.Server;

Expand Down
4 changes: 2 additions & 2 deletions StandAlone.NETCoreApp/StandAlone.NETCoreApp.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="WireMock.Net" Version="1.0.4.18" />
<PackageReference Include="WireMock.Net.StandAlone" Version="1.0.4.18" />
<PackageReference Include="WireMock.Net" Version="1.0.4.19" />
<PackageReference Include="WireMock.Net.StandAlone" Version="1.0.4.19" />
</ItemGroup>

</Project>
16 changes: 8 additions & 8 deletions StandAlone.NETCoreApp/create_how_to.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,39 +17,39 @@ docker rmi $(docker images -f "dangling=true" -q)
### 3. Tag

``` cmd
docker tag sheyenrath/wiremock.net-nano:latest sheyenrath/wiremock.net-nano:1.0.4.18
docker tag sheyenrath/wiremock.net-nano:latest sheyenrath/wiremock.net-nano:1.0.4.19
```

### 4. Push

``` cmd
docker push sheyenrath/wiremock.net-nano:latest
docker push sheyenrath/wiremock.net-nano:1.0.4.18
docker push sheyenrath/wiremock.net-nano:1.0.4.19
```

## Linux

### 1. Build

``` sh
``` cmd
docker build -t sheyenrath/wiremock.net -f .\Dockerfile .
```

### 2. Delete dangling images

``` sh
``` cmd
docker rmi $(docker images -f "dangling=true" -q)
```

### 3. Tag

``` sh
docker tag sheyenrath/wiremock.net:latest sheyenrath/wiremock.net:1.0.4.18
``` cmd
docker tag sheyenrath/wiremock.net:latest sheyenrath/wiremock.net:1.0.4.19
```

### 4. Push

``` sh
``` cmd
docker push sheyenrath/wiremock.net:latest
docker push sheyenrath/wiremock.net:1.0.4.18
docker push sheyenrath/wiremock.net:1.0.4.19
```