Skip to content
This repository was archived by the owner on Sep 5, 2024. It is now read-only.

Commit a89d8f0

Browse files
committed
docker build with azure pipeline
1 parent 9e1c19a commit a89d8f0

File tree

5 files changed

+88
-0
lines changed

5 files changed

+88
-0
lines changed

Sotsera.Blazor.Oidc.sln

+3
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,13 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "_solution", "_solution", "{
1313
ProjectSection(SolutionItems) = preProject
1414
.gitattributes = .gitattributes
1515
.gitignore = .gitignore
16+
azure-pipelines-demo-site.yml = azure-pipelines-demo-site.yml
1617
samples\ClientSide\wwwroot\CNAME = samples\ClientSide\wwwroot\CNAME
1718
Directory.Build.props = Directory.Build.props
19+
dockerfile = dockerfile
1820
global.json = global.json
1921
LICENSE.txt = LICENSE.txt
22+
nginx.conf = nginx.conf
2023
README.md = README.md
2124
EndProjectSection
2225
EndProject

azure-pipelines-demo-site.yml

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# Docker
2+
# Build a Docker image
3+
# https://docs.microsoft.com/azure/devops/pipelines/languages/docker
4+
5+
trigger:
6+
- demo
7+
8+
resources:
9+
- repo: self
10+
11+
variables:
12+
tag: '$(Build.BuildId)'
13+
14+
stages:
15+
- stage: Build
16+
displayName: Build image
17+
jobs:
18+
- job: Build
19+
displayName: Build
20+
pool:
21+
vmImage: 'ubuntu-latest'
22+
steps:
23+
- task: Docker@2
24+
displayName: Build and push image to container registry
25+
inputs:
26+
command: buildAndPush
27+
repository: ghidello/sotsera-blazor-oidc
28+
dockerfile: '**/dockerfile'
29+
containerRegistry: Docker
30+
tags: |
31+
$(Build.BuildId)
32+
latest

dockerfile

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
FROM mcr.microsoft.com/dotnet/core/sdk:3.0-buster AS build
2+
RUN apt-get update -yq \
3+
&& apt-get install curl gnupg -yq \
4+
&& curl -sL https://deb.nodesource.com/setup_12.x | bash \
5+
&& apt-get install nodejs -yq
6+
WORKDIR /sources
7+
COPY Directory.Build.props global.json ./
8+
COPY src/Sotsera.Blazor.Oidc/Sotsera.Blazor.Oidc.csproj src/Sotsera.Blazor.Oidc/
9+
COPY samples/ClientSide/ClientSide.csproj samples/ClientSide/
10+
RUN dotnet restore src/Sotsera.Blazor.Oidc/Sotsera.Blazor.Oidc.csproj \
11+
&& dotnet restore samples/ClientSide/ClientSide.csproj
12+
COPY src/Sotsera.Blazor.Oidc src/Sotsera.Blazor.Oidc
13+
COPY samples/ClientSide samples/ClientSide
14+
RUN dotnet build samples/ClientSide/ClientSide.csproj -c Release
15+
16+
FROM build AS publish
17+
RUN dotnet publish "samples/ClientSide/ClientSide.csproj" -c Release -o /publish
18+
19+
FROM fholzer/nginx-brotli AS final
20+
WORKDIR /usr/share/nginx/html
21+
COPY --from=publish /publish/ClientSide/dist .
22+
COPY --from=publish /publish/wwwroot .
23+
#RUN chmod -R go-rw .
24+
COPY nginx.conf /etc/nginx/nginx.conf

nginx.conf

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
events { }
2+
http {
3+
include mime.types;
4+
types {
5+
application/wasm wasm;
6+
}
7+
8+
server {
9+
listen 80;
10+
11+
location / {
12+
root /usr/share/nginx/html;
13+
try_files $uri $uri/ /index.html =404;
14+
}
15+
16+
# gzip
17+
gzip on;
18+
gzip_vary on;
19+
gzip_proxied any;
20+
gzip_comp_level 6;
21+
gzip_types application/atom+xml application/javascript application/json application/octet-stream application/vnd.ms-fontobject application/wasm application/x-font-opentype application/x-font-truetype application/x-font-ttf application/xhtml+xml application/x-javascript application/xml application/xml+rss font/eot font/opentype font/otf font/woff image/png image/svg+xml image/vnd.microsoft.icon image/x-icon image/x-win-bitmap text/css text/javascript text/plain text/xml;
22+
23+
# brotli
24+
brotli on;
25+
brotli_comp_level 6;
26+
brotli_types application/atom+xml application/javascript application/json application/octet-stream application/vnd.ms-fontobject application/wasm application/x-font-opentype application/x-font-truetype application/x-font-ttf application/xhtml+xml application/x-javascript application/xml application/xml+rss font/eot font/opentype font/otf font/woff image/png image/svg+xml image/vnd.microsoft.icon image/x-icon image/x-win-bitmap text/css text/javascript text/plain text/xml;
27+
}
28+
}

samples/ClientSide/ClientSide.csproj

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
<PropertyGroup>
44
<TargetFramework>netstandard2.0</TargetFramework>
5+
<OutputType>Exe</OutputType>
56
<LangVersion>7.3</LangVersion>
67
<RazorLangVersion>3.0</RazorLangVersion>
78
</PropertyGroup>

0 commit comments

Comments
 (0)