File tree 3 files changed +5
-3
lines changed
3 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 22
22
** /secrets.dev.yaml
23
23
** /values.dev.yaml
24
24
** /.idea
25
+ ** /build
25
26
LICENSE
26
27
README.md
Original file line number Diff line number Diff line change @@ -14,6 +14,7 @@ ProjectSection(SolutionItems) = preProject
14
14
.config \dotnet -tools .json = .config \dotnet -tools .json
15
15
CSharpier .Build .props = CSharpier .Build .props
16
16
Dockerfile = Dockerfile
17
+ Dockerfile -Website = Dockerfile -Website
17
18
.dockerignore = .dockerignore
18
19
global .json = global .json
19
20
CSharpier .Build .targets = CSharpier .Build .targets
Original file line number Diff line number Diff line change @@ -2,12 +2,12 @@ FROM node:14-alpine AS base
2
2
EXPOSE 80
3
3
4
4
WORKDIR /src
5
- COPY ./package.json .
6
- COPY ./package-lock.json .
5
+ COPY ./Src/Website/ package.json .
6
+ COPY ./Src/Website/ package-lock.json .
7
7
8
8
RUN npm ci
9
9
10
- COPY . .
10
+ COPY ./Src/Website/ .
11
11
RUN npm run build
12
12
13
13
ENTRYPOINT npm run serve -- --port 80 --host 0.0.0.0
You can’t perform that action at this time.
0 commit comments