Skip to content

Commit 52235b5

Browse files
author
Alexander Rogalskiy
committed
Updates on files
1 parent 47c6537 commit 52235b5

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/fossa.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
name: FOSSA
22

33
on:
4-
push:
5-
branches: [master]
6-
pull_request:
7-
branches: [master]
4+
workflow_dispatch:
5+
# push:
6+
# branches: [master]
7+
# pull_request:
8+
# branches: [master]
89

910
jobs:
1011
build:

Dockerfile

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -179,14 +179,13 @@ RUN npm cache clean --force
179179
##
180180
## ---- Testing ----
181181
##
182-
FROM base AS test
182+
FROM node-dependencies AS test
183183

184184
## setup testing stage
185185
RUN echo "**** Testing stage ****"
186186

187187
## copy dependencies
188-
#COPY --from=node-dependencies /usr/local/lib/node_modules ./node_modules/
189-
COPY --from=node-dependencies ${TEMP_DIR}/node_modules ./node_modules
188+
COPY ${TEMP_DIR}/node_modules ./node_modules
190189

191190
## copy source files
192191
COPY . ./

0 commit comments

Comments
 (0)