UNCLASSIFIED
Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Open sidebar
Ironbank Containers
K
Kubeflow
common
kflogin-ui-v0.5.0
Commits
662c662f
Commit
662c662f
authored
May 04, 2021
by
Daniel Etrata
Browse files
Only copy tgz and install on tgz files
parent
de858a55
Pipeline
#244748
passed with stages
in 92 minutes and 32 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
Dockerfile
Dockerfile
+3
-3
No files found.
Dockerfile
View file @
662c662f
...
...
@@ -12,12 +12,12 @@ RUN dnf upgrade -y && \
dnf clean all
&&
\
rm
-rf
/var/cache/dnf
COPY
--from=source /app /app
COPY
.
/tgz
COPY
*.tgz
/tgz
RUN
cd
/app
;
\
find /tgz
-type
f
-print
-exec
npm cache add
{}
\;
find /tgz
-name
*
.tgz
-type
f
-print
-exec
npm cache add
{}
\;
RUN
cd
/app
;
\
find /tgz
-type
f
-print
-exec
npm
install
{}
--prefer-offline
--no-optional
--no-audit
--verbose
\;
find /tgz
-name
*
.tgz
-type
f
-print
-exec
npm
install
{}
--prefer-offline
--no-optional
--no-audit
--verbose
\;
EXPOSE
5000
# Remove special permission bits
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment