Skip to content

Commit 990d7bf

Browse files
committed
updated readme
1 parent 6c691a9 commit 990d7bf

File tree

5 files changed

+15
-11
lines changed

5 files changed

+15
-11
lines changed

.dockerignore

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
**/.vscode
1111
**/*.*proj.user
1212
**/*.dbmdl
13+
**/*.db
1314
**/*.jfm
1415
**/azds.yaml
1516
**/bin

README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
[![Actions Status Web](https://github.com/asadsahi/aspnetcorespa/workflows/Web/badge.svg)](https://github.com/asadsahi/aspnetcorespa/actions?query=workflow%3AWEB)
22
[![Actions Status STS](https://github.com/asadsahi/aspnetcorespa/workflows/STS/badge.svg)](https://github.com/asadsahi/aspnetcorespa/actions?query=workflow%3ASTS)
3-
[![AzureDevOps status](https://asadsahi.visualstudio.com/_apis/public/build/definitions/a1519ab8-9104-47eb-96cc-6c37519c8b69/7/badge)](https://asadsahi.visualstudio.com/playground/_build/index?context=allDefinitions&path=%5C&definitionId=7&_a=completed)
3+
[![Build Status](https://asadsahi.visualstudio.com/playground/_apis/build/status/asadsahi.AspNetCoreSpa?branchName=master)](https://asadsahi.visualstudio.com/playground/_build/latest?definitionId=20&branchName=master)
4+
[![Build status](https://ci.appveyor.com/api/projects/status/35j3sxdi22rhg70c?svg=true)](https://ci.appveyor.com/project/asadsahi/aspnetcorespa)
45
[![MIT license](http://img.shields.io/badge/license-MIT-brightgreen.svg)](http://opensource.org/licenses/MIT)
56

67
## Features

src/AspNetCoreSpa.STS/.dockerignore

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
**/.vscode
1111
**/*.*proj.user
1212
**/*.dbmdl
13+
**/*.db
1314
**/*.jfm
1415
**/azds.yaml
1516
**/bin

src/AspNetCoreSpa.Web/.dockerignore

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
**/.vscode
1111
**/*.*proj.user
1212
**/*.dbmdl
13+
**/*.db
1314
**/*.jfm
1415
**/azds.yaml
1516
**/bin

src/AspNetCoreSpa.Web/Dockerfile

+10-10
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22

33
FROM mcr.microsoft.com/dotnet/core/aspnet:3.1-buster-slim AS base
44
# Setup NodeJs
5-
RUN apt-get update -qq && \
6-
apt-get install -qq -y wget && \
7-
apt-get install -qq -y gnupg2 && \
5+
RUN apt-get -qq update && \
6+
apt-get -qq install -y wget && \
7+
apt-get -qq install -y gnupg2 && \
88
wget -qO- https://deb.nodesource.com/setup_12.x | bash - && \
9-
apt-get install -qq -y build-essential nodejs && \
10-
apt-get install -qq -y nginx
9+
apt-get -qq install -y build-essential nodejs && \
10+
apt-get -qq install -y nginx
1111
# End setup
1212

1313
WORKDIR /app
@@ -17,12 +17,12 @@ EXPOSE 443
1717

1818
FROM mcr.microsoft.com/dotnet/core/sdk:3.1-buster AS build
1919
# Setup NodeJs
20-
RUN apt-get update -qq && \
21-
apt-get install -qq -y wget && \
22-
apt-get install -qq -y gnupg2 && \
20+
RUN apt-get -qq update && \
21+
apt-get -qq install -y wget && \
22+
apt-get -qq install -y gnupg2 && \
2323
wget -qO- https://deb.nodesource.com/setup_12.x | bash - && \
24-
apt-get install -qq -y build-essential nodejs && \
25-
apt-get install -qq -y nginx
24+
apt-get -qq install -y build-essential nodejs && \
25+
apt-get -qq install -y nginx
2626
# End setup
2727

2828
WORKDIR /src

0 commit comments

Comments
 (0)