Snippets

Carlos Rueda tethysdash-docker build/dockerize.sh tethysdash output

Created by Carlos Rueda last modified
  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
➜  tethysdash-docker git:(master) ✗ build/dockerize.sh tethysdash $TETHYSDASH_VERSION
    Given version for image = 3.9.73
              DASH3_VERSION = 3.9.73
              TDUSR_VERSION = 3.0.0
         tethysdash.version = 3.4.4
Sending build context to Docker daemon    513MB
Step 1/31 : FROM openjdk:8-alpine AS backend-builder
8-alpine: Pulling from library/openjdk
e7c96db7181b: Pull complete
f910a506b6cb: Pull complete
c2274a1a0e27: Pull complete
Digest: sha256:94792824df2df33402f201713f932b58cb9de94a0cd524164a0f2283343547b3
Status: Downloaded newer image for openjdk:8-alpine
 ---> a3562aa0b991
Step 2/31 : RUN apk add apache-ant  && mkdir -p /src/tethysdash
 ---> Running in 8a7336073d96
fetch http://dl-cdn.alpinelinux.org/alpine/v3.9/main/x86_64/APKINDEX.tar.gz
fetch http://dl-cdn.alpinelinux.org/alpine/v3.9/community/x86_64/APKINDEX.tar.gz
(1/1) Installing apache-ant (1.10.5-r0)
Executing busybox-1.29.3-r10.trigger
OK: 106 MiB in 55 packages
Removing intermediate container 8a7336073d96
 ---> c8a2213a02d6
Step 3/31 : COPY tethysdash /src/tethysdash
 ---> 09c9e649a28a
Step 4/31 : RUN cd /src/tethysdash/  && ant
 ---> Running in ec692aa96d15
Buildfile: /src/tethysdash/build.xml

init:
     [echo]
     [echo] 			tethysdash.version=3.4.4
     [echo] 			tethysdash.build=202002201949
     [echo]

clean:

getlibs:
      [get] Destination already exists (skipping): /src/tethysdash/lib/gwt-dev-2.5.0.jar
      [get] Destination already exists (skipping): /src/tethysdash/lib/gwt-user-2.5.0.jar
      [get] Destination already exists (skipping): /src/tethysdash/lib/gwt-codeserver.jar
      [get] Destination already exists (skipping): /src/tethysdash/lib/validation-api-1.0.0.GA.jar
      [get] Destination already exists (skipping): /src/tethysdash/lib/validation-api-1.0.0.GA-sources.jar
      [get] Destination already exists (skipping): /src/tethysdash/war/WEB-INF/lib/gwt-servlet.jar

prepare:

gwt-compile:
     [java] Feb 20, 2020 7:49:25 PM java.util.prefs.FileSystemPreferences$1 run
     [java] INFO: Created user preferences directory.
     [java] Compiling module org.mbari.tethys.dash.Dash
     [java]    Compiling 6 permutations
     [java]       Compiling permutation 0...
     [java]       Process output
     [java]          Compiling
     [java]             Compiling permutation 1...
     [java]       Process output
     [java]          Compiling
     [java]             Compiling permutation 3...
     [java]       Process output
     [java]          Compiling
     [java]             Compiling permutation 2...
     [java]       Compiling permutation 4...
     [java]          Compiling
     [java]             Compiling permutation 5...
     [java]    Compile of permutations succeeded
     [java] Linking into /src/tethysdash/war/dash; Writing extras to /src/tethysdash/extras/dash
     [java]    Link succeeded
     [java]    Compilation succeeded -- 62.056s

compile:
    [javac] Compiling 280 source files to /src/tethysdash/war/WEB-INF/classes
    [javac] DataNucleus : JDO Query - org.mbari.tethys.dash.model.Deployment -> org.mbari.tethys.dash.model.QDeployment
    [javac] DataNucleus : JDO Query - org.mbari.tethys.dash.model.Doc -> org.mbari.tethys.dash.model.QDoc
    [javac] DataNucleus : JDO Query - org.mbari.tethys.dash.model.DocInstance -> org.mbari.tethys.dash.model.QDocInstance
    [javac] DataNucleus : JDO Query - org.mbari.tethys.dash.model.EmailNotifSettings -> org.mbari.tethys.dash.model.QEmailNotifSettings
    [javac] DataNucleus : JDO Query - org.mbari.tethys.dash.model.Event -> org.mbari.tethys.dash.model.QEvent
    [javac] DataNucleus : JDO Query - org.mbari.tethys.dash.model.Fix -> org.mbari.tethys.dash.model.QFix
    [javac] DataNucleus : JDO Query - org.mbari.tethys.dash.model.Notify -> org.mbari.tethys.dash.model.QNotify
    [javac] DataNucleus : JDO Query - org.mbari.tethys.dash.model.SavedPatch -> org.mbari.tethys.dash.model.QSavedPatch
    [javac] DataNucleus : JDO Query - org.mbari.tethys.dash.model.Simulation -> org.mbari.tethys.dash.model.QSimulation
    [javac] DataNucleus : JDO Query - org.mbari.tethys.dash.model.Target -> org.mbari.tethys.dash.model.QTarget
    [javac] DataNucleus : JDO Query - org.mbari.tethys.dash.model.User -> org.mbari.tethys.dash.model.QUser
    [javac] Note: DataNucleus JDO AnnotationProcessor for generating Typesafe classes
    [javac] Note: Some input files use or override a deprecated API.
    [javac] Note: Recompile with -Xlint:deprecation for details.
    [javac] Note: Some input files use unchecked or unsafe operations.
    [javac] Note: Recompile with -Xlint:unchecked for details.

copy.metadata:
     [copy] Copying 612 files to /src/tethysdash/war/WEB-INF/classes

enhanceOnly:
     [echo] module.enhancer.classpath = /src/tethysdash/war/WEB-INF/classes:/src/tethysdash/war/WEB-INF/lib/commons-codec-1.10.jar:/src/tethysdash/war/WEB-INF/lib/commons-dbcp-1.4.jar:/src/tethysdash/war/WEB-INF/lib/commons-fileupload-1.3.jar:/src/tethysdash/war/WEB-INF/lib/commons-io-2.4.jar:/src/tethysdash/war/WEB-INF/lib/commons-logging-1.2.jar:/src/tethysdash/war/WEB-INF/lib/config-1.2.1.jar:/src/tethysdash/war/WEB-INF/lib/datanucleus-api-jdo-4.0.4.jar:/src/tethysdash/war/WEB-INF/lib/datanucleus-core-4.0.4.jar:/src/tethysdash/war/WEB-INF/lib/datanucleus-jdo-query-4.0.4.jar:/src/tethysdash/war/WEB-INF/lib/datanucleus-rdbms-4.0.5.jar:/src/tethysdash/war/WEB-INF/lib/diffutils-1.2.1.jar:/src/tethysdash/war/WEB-INF/lib/gson-2.8.6.jar:/src/tethysdash/war/WEB-INF/lib/guava-10.0.1-rebased.jar:/src/tethysdash/war/WEB-INF/lib/gwt-servlet.jar:/src/tethysdash/war/WEB-INF/lib/httpclient-4.3.4.jar:/src/tethysdash/war/WEB-INF/lib/httpcore-4.3.3.jar:/src/tethysdash/war/WEB-INF/lib/jasypt-1.9.2.jar:/src/tethysdash/war/WEB-INF/lib/java-jwt-2.1.0.jar:/src/tethysdash/war/WEB-INF/lib/jcommon-1.0.16.jar:/src/tethysdash/war/WEB-INF/lib/jdo-api-3.1-rc1.jar:/src/tethysdash/war/WEB-INF/lib/jfreechart-1.0.13.jar:/src/tethysdash/war/WEB-INF/lib/jna-3.4.0.jar:/src/tethysdash/war/WEB-INF/lib/joda-time-2.9.9.jar:/src/tethysdash/war/WEB-INF/lib/jpa-annotations-source.jar:/src/tethysdash/war/WEB-INF/lib/jsch-0.1.53.jar:/src/tethysdash/war/WEB-INF/lib/jsr305-1.3.9.jar:/src/tethysdash/war/WEB-INF/lib/log4j-api-2.13.0.jar:/src/tethysdash/war/WEB-INF/lib/log4j-core-2.13.0.jar:/src/tethysdash/war/WEB-INF/lib/netcdf-4.2.jar:/src/tethysdash/war/WEB-INF/lib/org.eclipse.jgit-5.4.0.201906121030-r.jar:/src/tethysdash/war/WEB-INF/lib/postgresql-42.2.2.jre7.jar:/src/tethysdash/war/WEB-INF/lib/pusher-http-java-0.9.3.jar:/src/tethysdash/war/WEB-INF/lib/resolver.jar:/src/tethysdash/war/WEB-INF/lib/serializer.jar:/src/tethysdash/war/WEB-INF/lib/slf4j-api-1.6.2.jar:/src/tethysdash/war/WEB-INF/lib/slf4j-jdk14-1.6.2.jar:/src/tethysdash/war/WEB-INF/lib/streamhtmlparser-jsilver-r10-rebased.jar:/src/tethysdash/war/WEB-INF/lib/svnkit-1.7.5.jar:/src/tethysdash/war/WEB-INF/lib/svnkit-cli-1.7.5.jar:/src/tethysdash/war/WEB-INF/lib/trilead-ssh2-1.0.0-build215.jar:/src/tethysdash/war/WEB-INF/lib/xercesImpl.jar:/src/tethysdash/war/WEB-INF/lib/xml-apis.jar:/src/tethysdash/lib/asm-3.3.1.jar:/src/tethysdash/lib/gwt-codeserver.jar:/src/tethysdash/lib/gwt-dev-2.5.0.jar:/src/tethysdash/lib/gwt-user-2.5.0.jar:/src/tethysdash/lib/javax.mail-1.5.2.jar:/src/tethysdash/lib/pusher-java-client-1.4.0.jar:/src/tethysdash/lib/validation-api-1.0.0.GA-sources.jar:/src/tethysdash/lib/validation-api-1.0.0.GA.jar
[nucleusenhancer] DataNucleus Enhancer (version 4.0.4) for API "JDO"
[nucleusenhancer] Feb 20, 2020 7:50:37 PM org.datanucleus.enhancer.CommandLineHelper logEnhancerVersion
[nucleusenhancer] INFO: DataNucleus Enhancer (version 4.0.4) for API "JDO"
[nucleusenhancer] Feb 20, 2020 7:50:37 PM org.datanucleus.enhancer.ClassEnhancerImpl save
[nucleusenhancer] INFO: Writing class file "/src/tethysdash/war/WEB-INF/classes/org/mbari/tethys/dash/model/Deployment.class" with enhanced definition
[nucleusenhancer] DataNucleus Enhancer completed with success for 11 classes.
[nucleusenhancer] Feb 20, 2020 7:50:37 PM org.datanucleus.enhancer.ClassEnhancerImpl save
[nucleusenhancer] INFO: Writing class file "/src/tethysdash/war/WEB-INF/classes/org/mbari/tethys/dash/model/Doc.class" with enhanced definition
[nucleusenhancer] Feb 20, 2020 7:50:37 PM org.datanucleus.enhancer.ClassEnhancerImpl save
[nucleusenhancer] INFO: Writing class file "/src/tethysdash/war/WEB-INF/classes/org/mbari/tethys/dash/model/DocInstance.class" with enhanced definition
[nucleusenhancer] Feb 20, 2020 7:50:37 PM org.datanucleus.enhancer.ClassEnhancerImpl save
[nucleusenhancer] INFO: Writing class file "/src/tethysdash/war/WEB-INF/classes/org/mbari/tethys/dash/model/EmailNotifSettings.class" with enhanced definition
[nucleusenhancer] Feb 20, 2020 7:50:37 PM org.datanucleus.enhancer.ClassEnhancerImpl save
[nucleusenhancer] INFO: Writing class file "/src/tethysdash/war/WEB-INF/classes/org/mbari/tethys/dash/model/Event.class" with enhanced definition
[nucleusenhancer] Feb 20, 2020 7:50:37 PM org.datanucleus.enhancer.ClassEnhancerImpl save
[nucleusenhancer] INFO: Writing class file "/src/tethysdash/war/WEB-INF/classes/org/mbari/tethys/dash/model/Fix.class" with enhanced definition
[nucleusenhancer] Feb 20, 2020 7:50:37 PM org.datanucleus.enhancer.ClassEnhancerImpl save
[nucleusenhancer] INFO: Writing class file "/src/tethysdash/war/WEB-INF/classes/org/mbari/tethys/dash/model/Notify.class" with enhanced definition
[nucleusenhancer] Feb 20, 2020 7:50:37 PM org.datanucleus.enhancer.ClassEnhancerImpl save
[nucleusenhancer] INFO: Writing class file "/src/tethysdash/war/WEB-INF/classes/org/mbari/tethys/dash/model/SavedPatch.class" with enhanced definition
[nucleusenhancer] Feb 20, 2020 7:50:37 PM org.datanucleus.enhancer.ClassEnhancerImpl save
[nucleusenhancer] INFO: Writing class file "/src/tethysdash/war/WEB-INF/classes/org/mbari/tethys/dash/model/Simulation.class" with enhanced definition
[nucleusenhancer] Feb 20, 2020 7:50:37 PM org.datanucleus.enhancer.ClassEnhancerImpl save
[nucleusenhancer] INFO: Writing class file "/src/tethysdash/war/WEB-INF/classes/org/mbari/tethys/dash/model/Target.class" with enhanced definition
[nucleusenhancer] Feb 20, 2020 7:50:37 PM org.datanucleus.enhancer.ClassEnhancerImpl save
[nucleusenhancer] INFO: Writing class file "/src/tethysdash/war/WEB-INF/classes/org/mbari/tethys/dash/model/User.class" with enhanced definition
[nucleusenhancer] Feb 20, 2020 7:50:37 PM org.datanucleus.enhancer.DataNucleusEnhancer addMessage
[nucleusenhancer] INFO: DataNucleus Enhancer completed with success for 11 classes.

enhance:

check-war:

delete-war:
   [delete] Deleting: /src/tethysdash/TethysDash.war

apply-templates:
     [copy] Copying 1 file to /src/tethysdash/war/WEB-INF/html

make-war:
      [jar] Building jar: /src/tethysdash/TethysDash.war

apiclient:
      [jar] Building jar: /src/tethysdash/tethysdash-apiclient-3.4.4.jar
  [javadoc] Generating Javadoc
  [javadoc] Javadoc execution
  [javadoc] Loading source file /src/tethysdash/src/org/mbari/tethys/rest/client/ApiClient.java...
  [javadoc] Loading source file /src/tethysdash/src/org/mbari/tethys/rest/client/AsyncClient.java...
  [javadoc] Loading source file /src/tethysdash/src/org/mbari/tethys/rest/model/DListResult.java...
  [javadoc] Loading source file /src/tethysdash/src/org/mbari/tethys/rest/model/DeleteUserResult.java...
  [javadoc] Loading source file /src/tethysdash/src/org/mbari/tethys/rest/model/DeploymentInfo.java...
  [javadoc] Loading source file /src/tethysdash/src/org/mbari/tethys/rest/model/EndDeploymentResult.java...
  [javadoc] Loading source file /src/tethysdash/src/org/mbari/tethys/rest/model/GitTagInfo.java...
  [javadoc] Loading source file /src/tethysdash/src/org/mbari/tethys/rest/model/InfoResult.java...
  [javadoc] Loading source file /src/tethysdash/src/org/mbari/tethys/rest/model/LaunchOrRecoverResult.java...
  [javadoc] Loading source file /src/tethysdash/src/org/mbari/tethys/rest/model/MissionDefinitionSummary.java...
  [javadoc] Loading source file /src/tethysdash/src/org/mbari/tethys/rest/model/MissionList.java...
  [javadoc] Loading source file /src/tethysdash/src/org/mbari/tethys/rest/model/RemoveEventsResult.java...
  [javadoc] Loading source file /src/tethysdash/src/org/mbari/tethys/rest/model/ResetPasswordResult.java...
  [javadoc] Loading source file /src/tethysdash/src/org/mbari/tethys/rest/model/SendCommandsResult.java...
  [javadoc] Loading source file /src/tethysdash/src/org/mbari/tethys/rest/model/SendNoteResult.java...
  [javadoc] Loading source file /src/tethysdash/src/org/mbari/tethys/rest/model/StartDeploymentResult.java...
  [javadoc] Loading source file /src/tethysdash/src/org/mbari/tethys/rest/model/UpdateDeploymentResult.java...
  [javadoc] Loading source file /src/tethysdash/src/org/mbari/tethys/rest/model/UserResult.java...
  [javadoc] /src/tethysdash/src/org/mbari/tethys/rest/client/ApiClient.java:3: error: package com.google.gson does not exist
  [javadoc] import com.google.gson.Gson;
  [javadoc]                       ^
  [javadoc] /src/tethysdash/src/org/mbari/tethys/rest/client/ApiClient.java:4: error: package org.apache.commons.io does not exist
  [javadoc] import org.apache.commons.io.IOUtils;
  [javadoc]                             ^
  [javadoc] /src/tethysdash/src/org/mbari/tethys/rest/client/ApiClient.java:5: error: package org.apache.http does not exist
  [javadoc] import org.apache.http.HttpResponse;
  [javadoc]                       ^
  [javadoc] /src/tethysdash/src/org/mbari/tethys/rest/client/ApiClient.java:6: error: package org.apache.http.client does not exist
  [javadoc] import org.apache.http.client.HttpClient;
  [javadoc]                              ^
  [javadoc] /src/tethysdash/src/org/mbari/tethys/rest/client/ApiClient.java:7: error: package org.apache.http.client.config does not exist
  [javadoc] import org.apache.http.client.config.RequestConfig;
  [javadoc]                                     ^
  [javadoc] /src/tethysdash/src/org/mbari/tethys/rest/client/ApiClient.java:8: error: package org.apache.http.client.methods does not exist
  [javadoc] import org.apache.http.client.methods.HttpDelete;
  [javadoc]                                      ^
  [javadoc] /src/tethysdash/src/org/mbari/tethys/rest/client/ApiClient.java:9: error: package org.apache.http.client.methods does not exist
  [javadoc] import org.apache.http.client.methods.HttpGet;
  [javadoc]                                      ^
  [javadoc] /src/tethysdash/src/org/mbari/tethys/rest/client/ApiClient.java:10: error: package org.apache.http.client.methods does not exist
  [javadoc] import org.apache.http.client.methods.HttpPost;
  [javadoc]                                      ^
  [javadoc] /src/tethysdash/src/org/mbari/tethys/rest/client/ApiClient.java:11: error: package org.apache.http.client.methods does not exist
  [javadoc] import org.apache.http.client.methods.HttpRequestBase;
  [javadoc]                                      ^
  [javadoc] /src/tethysdash/src/org/mbari/tethys/rest/client/ApiClient.java:12: error: package org.apache.http.client.utils does not exist
  [javadoc] import org.apache.http.client.utils.URIBuilder;
  [javadoc]                                    ^
  [javadoc] /src/tethysdash/src/org/mbari/tethys/rest/client/ApiClient.java:13: error: package org.apache.http.impl.client does not exist
  [javadoc] import org.apache.http.impl.client.HttpClientBuilder;
  [javadoc]                                   ^
  [javadoc] Constructing Javadoc information...
  [javadoc] /src/tethysdash/src/org/mbari/tethys/rest/client/ApiClient.java:469: error: cannot find symbol
  [javadoc]   private HttpResponse makeRequest(HttpRequestBase request) throws IOException {
  [javadoc]                                    ^
  [javadoc]   symbol:   class HttpRequestBase
  [javadoc]   location: class ApiClient
  [javadoc] /src/tethysdash/src/org/mbari/tethys/rest/client/ApiClient.java:469: error: cannot find symbol
  [javadoc]   private HttpResponse makeRequest(HttpRequestBase request) throws IOException {
  [javadoc]           ^
  [javadoc]   symbol:   class HttpResponse
  [javadoc]   location: class ApiClient
  [javadoc] /src/tethysdash/src/org/mbari/tethys/rest/client/ApiClient.java:477: error: cannot find symbol
  [javadoc]   private HttpResponse makeRequestWithAuth(HttpRequestBase request) throws UnauthenticatedException, IOException {
  [javadoc]                                            ^
  [javadoc]   symbol:   class HttpRequestBase
  [javadoc]   location: class ApiClient
  [javadoc] /src/tethysdash/src/org/mbari/tethys/rest/client/ApiClient.java:477: error: cannot find symbol
  [javadoc]   private HttpResponse makeRequestWithAuth(HttpRequestBase request) throws UnauthenticatedException, IOException {
  [javadoc]           ^
  [javadoc]   symbol:   class HttpResponse
  [javadoc]   location: class ApiClient
  [javadoc] /src/tethysdash/src/org/mbari/tethys/rest/client/ApiClient.java:488: error: cannot find symbol
  [javadoc]   private static String getResponseContent(HttpResponse httpResponse) throws IOException {
  [javadoc]                                            ^
  [javadoc]   symbol:   class HttpResponse
  [javadoc]   location: class ApiClient
  [javadoc] /src/tethysdash/src/org/mbari/tethys/rest/client/ApiClient.java:495: error: cannot find symbol
  [javadoc]   private static final Gson gson = new Gson();
  [javadoc]                        ^
  [javadoc]   symbol:   class Gson
  [javadoc]   location: class ApiClient
  [javadoc] /src/tethysdash/src/org/mbari/tethys/rest/model/InfoResult.java:3: error: package org.mbari.tethys.dash.shared does not exist
  [javadoc] import org.mbari.tethys.dash.shared.EventKind;
  [javadoc]                                    ^
  [javadoc] /src/tethysdash/src/org/mbari/tethys/rest/client/AsyncClient.java:3: error: package com.google.gson does not exist
  [javadoc] import com.google.gson.Gson;
  [javadoc]                       ^
  [javadoc] /src/tethysdash/src/org/mbari/tethys/rest/client/AsyncClient.java:4: error: package com.pusher.client does not exist
  [javadoc] import com.pusher.client.Pusher;
  [javadoc]                         ^
  [javadoc] /src/tethysdash/src/org/mbari/tethys/rest/client/AsyncClient.java:5: error: package com.pusher.client does not exist
  [javadoc] import com.pusher.client.PusherOptions;
  [javadoc]                         ^
  [javadoc] /src/tethysdash/src/org/mbari/tethys/rest/client/AsyncClient.java:6: error: package com.pusher.client.channel does not exist
  [javadoc] import com.pusher.client.channel.Channel;
  [javadoc]                                 ^
  [javadoc] /src/tethysdash/src/org/mbari/tethys/rest/client/AsyncClient.java:7: error: package com.pusher.client.channel does not exist
  [javadoc] import com.pusher.client.channel.ChannelEventListener;
  [javadoc]                                 ^
  [javadoc] /src/tethysdash/src/org/mbari/tethys/rest/client/AsyncClient.java:8: error: package com.pusher.client.channel does not exist
  [javadoc] import com.pusher.client.channel.SubscriptionEventListener;
  [javadoc]                                 ^
  [javadoc] /src/tethysdash/src/org/mbari/tethys/rest/client/AsyncClient.java:9: error: package com.pusher.client.connection does not exist
  [javadoc] import com.pusher.client.connection.ConnectionEventListener;
  [javadoc]                                    ^
  [javadoc] /src/tethysdash/src/org/mbari/tethys/rest/client/AsyncClient.java:10: error: package com.pusher.client.connection does not exist
  [javadoc] import com.pusher.client.connection.ConnectionStateChange;
  [javadoc]                                    ^
  [javadoc] /src/tethysdash/src/org/mbari/tethys/rest/client/AsyncClient.java:185: error: cannot find symbol
  [javadoc]   private Pusher pusher;
  [javadoc]           ^
  [javadoc]   symbol:   class Pusher
  [javadoc]   location: class AsyncClient
  [javadoc] /src/tethysdash/src/org/mbari/tethys/rest/client/AsyncClient.java:169: error: cannot find symbol
  [javadoc]   private class ConnectionListener implements ConnectionEventListener {
  [javadoc]                                               ^
  [javadoc]   symbol:   class ConnectionEventListener
  [javadoc]   location: class AsyncClient
  [javadoc] /src/tethysdash/src/org/mbari/tethys/rest/client/AsyncClient.java:172: error: cannot find symbol
  [javadoc]     public void onConnectionStateChange(ConnectionStateChange change) {
  [javadoc]                                         ^
  [javadoc]   symbol:   class ConnectionStateChange
  [javadoc]   location: class AsyncClient.ConnectionListener
  [javadoc] Standard Doclet version 1.8.0_212
  [javadoc] Building tree for all the packages and classes...
  [javadoc] /src/tethysdash/src/org/mbari/tethys/rest/client/ApiClient.java:77: warning: no @throws for org.mbari.tethys.rest.client.ApiClient.ResponseException
  [javadoc]   public String authenticate(String email, String password)
  [javadoc]                 ^
  [javadoc] /src/tethysdash/src/org/mbari/tethys/rest/client/ApiClient.java:77: warning: no @throws for java.io.IOException
  [javadoc]   public String authenticate(String email, String password)
  [javadoc]                 ^
  [javadoc] /src/tethysdash/src/org/mbari/tethys/rest/client/ApiClient.java:77: warning: no @throws for java.net.URISyntaxException
  [javadoc]   public String authenticate(String email, String password)
  [javadoc]                 ^
  [javadoc] /src/tethysdash/src/org/mbari/tethys/rest/client/ApiClient.java:127: warning: no @return
  [javadoc]   public SendNoteResponse sendNote(String vehicle, String note)
  [javadoc]                           ^
  [javadoc] /src/tethysdash/src/org/mbari/tethys/rest/client/ApiClient.java:127: warning: no @throws for org.mbari.tethys.rest.client.ApiClient.UnauthenticatedException
  [javadoc]   public SendNoteResponse sendNote(String vehicle, String note)
  [javadoc]                           ^
  [javadoc] /src/tethysdash/src/org/mbari/tethys/rest/client/ApiClient.java:127: warning: no @throws for org.mbari.tethys.rest.client.ApiClient.ResponseException
  [javadoc]   public SendNoteResponse sendNote(String vehicle, String note)
  [javadoc]                           ^
  [javadoc] /src/tethysdash/src/org/mbari/tethys/rest/client/ApiClient.java:127: warning: no @throws for java.io.IOException
  [javadoc]   public SendNoteResponse sendNote(String vehicle, String note)
  [javadoc]                           ^
  [javadoc] /src/tethysdash/src/org/mbari/tethys/rest/client/ApiClient.java:127: warning: no @throws for java.net.URISyntaxException
  [javadoc]   public SendNoteResponse sendNote(String vehicle, String note)
  [javadoc]                           ^
  [javadoc] /src/tethysdash/src/org/mbari/tethys/rest/client/ApiClient.java:155: warning: no @return
  [javadoc]   public GetCommandsResponse getCommands()
  [javadoc]                              ^
  [javadoc] /src/tethysdash/src/org/mbari/tethys/rest/client/ApiClient.java:155: warning: no @throws for org.mbari.tethys.rest.client.ApiClient.UnauthenticatedException
  [javadoc]   public GetCommandsResponse getCommands()
  [javadoc]                              ^
  [javadoc] /src/tethysdash/src/org/mbari/tethys/rest/client/ApiClient.java:155: warning: no @throws for org.mbari.tethys.rest.client.ApiClient.ResponseException
  [javadoc]   public GetCommandsResponse getCommands()
  [javadoc]                              ^
  [javadoc] /src/tethysdash/src/org/mbari/tethys/rest/client/ApiClient.java:155: warning: no @throws for java.io.IOException
  [javadoc]   public GetCommandsResponse getCommands()
  [javadoc]                              ^
  [javadoc] /src/tethysdash/src/org/mbari/tethys/rest/client/ApiClient.java:155: warning: no @throws for java.net.URISyntaxException
  [javadoc]   public GetCommandsResponse getCommands()
  [javadoc]                              ^
  [javadoc] /src/tethysdash/src/org/mbari/tethys/rest/client/ApiClient.java:206: warning: no @return
  [javadoc]   public GetEventsResponse getEvents(String vehicles,
  [javadoc]                            ^
  [javadoc] /src/tethysdash/src/org/mbari/tethys/rest/client/ApiClient.java:206: warning: no @throws for org.mbari.tethys.rest.client.ApiClient.UnauthenticatedException
  [javadoc]   public GetEventsResponse getEvents(String vehicles,
  [javadoc]                            ^
  [javadoc] /src/tethysdash/src/org/mbari/tethys/rest/client/ApiClient.java:206: warning: no @throws for org.mbari.tethys.rest.client.ApiClient.ResponseException
  [javadoc]   public GetEventsResponse getEvents(String vehicles,
  [javadoc]                            ^
  [javadoc] /src/tethysdash/src/org/mbari/tethys/rest/client/ApiClient.java:206: warning: no @throws for java.io.IOException
  [javadoc]   public GetEventsResponse getEvents(String vehicles,
  [javadoc]                            ^
  [javadoc] /src/tethysdash/src/org/mbari/tethys/rest/client/ApiClient.java:206: warning: no @throws for java.net.URISyntaxException
  [javadoc]   public GetEventsResponse getEvents(String vehicles,
  [javadoc]                            ^
  [javadoc] /src/tethysdash/src/org/mbari/tethys/rest/client/ApiClient.java:248: warning: no @return
  [javadoc]   public GetMissionStartedEventsResponse getLatestMissionStartedEvents(String vehicles,
  [javadoc]                                          ^
  [javadoc] /src/tethysdash/src/org/mbari/tethys/rest/client/ApiClient.java:248: warning: no @throws for org.mbari.tethys.rest.client.ApiClient.UnauthenticatedException
  [javadoc]   public GetMissionStartedEventsResponse getLatestMissionStartedEvents(String vehicles,
  [javadoc]                                          ^
  [javadoc] /src/tethysdash/src/org/mbari/tethys/rest/client/ApiClient.java:248: warning: no @throws for org.mbari.tethys.rest.client.ApiClient.ResponseException
  [javadoc]   public GetMissionStartedEventsResponse getLatestMissionStartedEvents(String vehicles,
  [javadoc]                                          ^
  [javadoc] /src/tethysdash/src/org/mbari/tethys/rest/client/ApiClient.java:248: warning: no @throws for java.io.IOException
  [javadoc]   public GetMissionStartedEventsResponse getLatestMissionStartedEvents(String vehicles,
  [javadoc]                                          ^
  [javadoc] /src/tethysdash/src/org/mbari/tethys/rest/client/ApiClient.java:248: warning: no @throws for java.net.URISyntaxException
  [javadoc]   public GetMissionStartedEventsResponse getLatestMissionStartedEvents(String vehicles,
  [javadoc]                                          ^
  [javadoc] /src/tethysdash/src/org/mbari/tethys/rest/client/ApiClient.java:286: warning: no @return
  [javadoc]   public GetMissionsResponse getMissions(String tag, String subDir)
  [javadoc]                              ^
  [javadoc] /src/tethysdash/src/org/mbari/tethys/rest/client/ApiClient.java:286: warning: no @throws for org.mbari.tethys.rest.client.ApiClient.UnauthenticatedException
  [javadoc]   public GetMissionsResponse getMissions(String tag, String subDir)
  [javadoc]                              ^
  [javadoc] /src/tethysdash/src/org/mbari/tethys/rest/client/ApiClient.java:286: warning: no @throws for org.mbari.tethys.rest.client.ApiClient.ResponseException
  [javadoc]   public GetMissionsResponse getMissions(String tag, String subDir)
  [javadoc]                              ^
  [javadoc] /src/tethysdash/src/org/mbari/tethys/rest/client/ApiClient.java:286: warning: no @throws for java.io.IOException
  [javadoc]   public GetMissionsResponse getMissions(String tag, String subDir)
  [javadoc]                              ^
  [javadoc] /src/tethysdash/src/org/mbari/tethys/rest/client/ApiClient.java:286: warning: no @throws for java.net.URISyntaxException
  [javadoc]   public GetMissionsResponse getMissions(String tag, String subDir)
  [javadoc]                              ^
  [javadoc] /src/tethysdash/src/org/mbari/tethys/rest/client/ApiClient.java:314: warning: no @return
  [javadoc]   public GetMissionDefinitionSummaryResponse getMissionDefinitionSummary(String tag,
  [javadoc]                                              ^
  [javadoc] /src/tethysdash/src/org/mbari/tethys/rest/client/ApiClient.java:314: warning: no @throws for org.mbari.tethys.rest.client.ApiClient.UnauthenticatedException
  [javadoc]   public GetMissionDefinitionSummaryResponse getMissionDefinitionSummary(String tag,
  [javadoc]                                              ^
  [javadoc] /src/tethysdash/src/org/mbari/tethys/rest/client/ApiClient.java:314: warning: no @throws for org.mbari.tethys.rest.client.ApiClient.ResponseException
  [javadoc]   public GetMissionDefinitionSummaryResponse getMissionDefinitionSummary(String tag,
  [javadoc]                                              ^
  [javadoc] /src/tethysdash/src/org/mbari/tethys/rest/client/ApiClient.java:314: warning: no @throws for java.io.IOException
  [javadoc]   public GetMissionDefinitionSummaryResponse getMissionDefinitionSummary(String tag,
  [javadoc]                                              ^
  [javadoc] /src/tethysdash/src/org/mbari/tethys/rest/client/ApiClient.java:314: warning: no @throws for java.net.URISyntaxException
  [javadoc]   public GetMissionDefinitionSummaryResponse getMissionDefinitionSummary(String tag,
  [javadoc]                                              ^
  [javadoc] /src/tethysdash/src/org/mbari/tethys/rest/client/ApiClient.java:337: warning: no description for @throws
  [javadoc]    * @throws UnauthenticatedException
  [javadoc]      ^
  [javadoc] /src/tethysdash/src/org/mbari/tethys/rest/client/ApiClient.java:338: warning: no description for @throws
  [javadoc]    * @throws ResponseException
  [javadoc]      ^
  [javadoc] /src/tethysdash/src/org/mbari/tethys/rest/client/ApiClient.java:339: warning: no description for @throws
  [javadoc]    * @throws IOException
  [javadoc]      ^
  [javadoc] /src/tethysdash/src/org/mbari/tethys/rest/client/ApiClient.java:340: warning: no description for @throws
  [javadoc]    * @throws URISyntaxException
  [javadoc]      ^
  [javadoc] /src/tethysdash/src/org/mbari/tethys/rest/client/ApiClient.java:362: warning: no description for @param
  [javadoc]    * @param vehicle
  [javadoc]      ^
  [javadoc] /src/tethysdash/src/org/mbari/tethys/rest/client/ApiClient.java:363: warning: no description for @param
  [javadoc]    * @param commandText
  [javadoc]      ^
  [javadoc] /src/tethysdash/src/org/mbari/tethys/rest/client/ApiClient.java:364: warning: no description for @param
  [javadoc]    * @param commandNote
  [javadoc]      ^
  [javadoc] /src/tethysdash/src/org/mbari/tethys/rest/client/ApiClient.java:377: warning: no description for @throws
  [javadoc]    * @throws Exception
  [javadoc]      ^
  [javadoc] /src/tethysdash/src/org/mbari/tethys/rest/client/ApiClient.java:426: warning: no @return
  [javadoc]   public GetDeploymentsResponse getDeployments(String vehicle)
  [javadoc]                                 ^
  [javadoc] /src/tethysdash/src/org/mbari/tethys/rest/client/ApiClient.java:426: warning: no @throws for org.mbari.tethys.rest.client.ApiClient.UnauthenticatedException
  [javadoc]   public GetDeploymentsResponse getDeployments(String vehicle)
  [javadoc]                                 ^
  [javadoc] /src/tethysdash/src/org/mbari/tethys/rest/client/ApiClient.java:426: warning: no @throws for org.mbari.tethys.rest.client.ApiClient.ResponseException
  [javadoc]   public GetDeploymentsResponse getDeployments(String vehicle)
  [javadoc]                                 ^
  [javadoc] /src/tethysdash/src/org/mbari/tethys/rest/client/ApiClient.java:426: warning: no @throws for java.io.IOException
  [javadoc]   public GetDeploymentsResponse getDeployments(String vehicle)
  [javadoc]                                 ^
  [javadoc] /src/tethysdash/src/org/mbari/tethys/rest/client/ApiClient.java:426: warning: no @throws for java.net.URISyntaxException
  [javadoc]   public GetDeploymentsResponse getDeployments(String vehicle)
  [javadoc]                                 ^
  [javadoc] /src/tethysdash/src/org/mbari/tethys/rest/client/ApiClient.java:27: error: self-closing element not allowed
  [javadoc]  * <br/><br/>
  [javadoc]    ^
  [javadoc] /src/tethysdash/src/org/mbari/tethys/rest/client/ApiClient.java:27: error: self-closing element not allowed
  [javadoc]  * <br/><br/>
  [javadoc]         ^
  [javadoc] /src/tethysdash/src/org/mbari/tethys/rest/client/ApiClient.java:31: error: self-closing element not allowed
  [javadoc]  * <br/><br/>
  [javadoc]    ^
  [javadoc] /src/tethysdash/src/org/mbari/tethys/rest/client/ApiClient.java:31: error: self-closing element not allowed
  [javadoc]  * <br/><br/>
  [javadoc]         ^
  [javadoc] /src/tethysdash/src/org/mbari/tethys/rest/client/AsyncClient.java:19: error: self-closing element not allowed
  [javadoc]  * <br/><br/>
  [javadoc]    ^
  [javadoc] /src/tethysdash/src/org/mbari/tethys/rest/client/AsyncClient.java:19: error: self-closing element not allowed
  [javadoc]  * <br/><br/>
  [javadoc]         ^
  [javadoc] /src/tethysdash/src/org/mbari/tethys/rest/client/AsyncClient.java:23: error: self-closing element not allowed
  [javadoc]  * <br/><br/>
  [javadoc]    ^
  [javadoc] /src/tethysdash/src/org/mbari/tethys/rest/client/AsyncClient.java:23: error: self-closing element not allowed
  [javadoc]  * <br/><br/>
  [javadoc]         ^
  [javadoc] /src/tethysdash/src/org/mbari/tethys/rest/client/AsyncClient.java:25: error: self-closing element not allowed
  [javadoc]  * <br/>
  [javadoc]    ^
  [javadoc] /src/tethysdash/src/org/mbari/tethys/rest/client/AsyncClient.java:34: error: invalid entity &commat;
  [javadoc]       &commat;Override
  [javadoc]       ^
  [javadoc] Building index for all the packages and classes...
  [javadoc] Building index for all classes...
  [javadoc] Generating /src/tethysdash/javaclient/help-doc.html...
  [javadoc] 10 errors
  [javadoc] 75 warnings

distribution:

BUILD SUCCESSFUL
Total time: 1 minute 17 seconds
Removing intermediate container ec692aa96d15
 ---> 4f6b114fc2f9
Step 5/31 : FROM node:12.7-alpine AS ui-builder
12.7-alpine: Pulling from library/node
e7c96db7181b: Already exists
72484f09da35: Pull complete
86bee4bed5f2: Pull complete
f9e983f0fe2c: Pull complete
Digest: sha256:300e3d2c19067c1aec9d9b2bd3acbd43d53797a5836d70a23e437a5634bcd33a
Status: Downloaded newer image for node:12.7-alpine
 ---> d97a436daee9
Step 6/31 : RUN npm install -g @quasar/cli   && mkdir -p           /src/dash3           /src/tdusr
 ---> Running in b1ddea7ab166
npm WARN deprecated coffee-script@1.12.7: CoffeeScript on NPM has moved to "coffeescript" (no hyphen)
/usr/local/bin/quasar -> /usr/local/lib/node_modules/@quasar/cli/bin/quasar
+ @quasar/cli@1.0.5
added 294 packages from 226 contributors in 16.107s
Removing intermediate container b1ddea7ab166
 ---> d6b7be913ad9
Step 7/31 : COPY dash3 /src/dash3
 ---> 4f5c1306d35b
Step 8/31 : COPY tdusr /src/tdusr
 ---> d06bd4d34814
Step 9/31 : RUN cd /src/dash3/  && npm install  && quasar build  && (cd dist/spa-mat && tar zcf ../dash3.tgz -- *)
 ---> Running in fb9004745a6b
npm WARN optional SKIPPING OPTIONAL DEPENDENCY: fsevents@1.2.7 (node_modules/fsevents):
npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for fsevents@1.2.7: wanted {"os":"darwin","arch":"any"} (current: {"os":"linux","arch":"x64"})

added 1364 packages from 623 contributors and audited 16055 packages in 22.664s
found 735 vulnerabilities (10 moderate, 725 high)
  run `npm audit fix` to fix them, or `npm audit` for details

 Build mode........ spa
 Quasar theme...... mat
 Quasar CLI........ v0.17.24
 Quasar Framework.. v0.17.20
 Debugging......... no

 app:quasar-conf Reading quasar.conf.js +0ms
Browserslist: caniuse-lite is outdated. Please run next command `npm update`
 app:webpack Extending SPA Webpack config +671ms
 app:artifacts Cleaned build artifact: "/src/dash3/dist/spa-mat" +9ms
 app:generator Generating Webpack entry point +2ms
 app:build Building... +2ms
 app:progress Compiling SPA... +88ms
Browserslist: caniuse-lite is outdated. Please run next command `npm update`
Browserslist: caniuse-lite is outdated. Please run next command `npm update`
Browserslist: caniuse-lite is outdated. Please run next command `npm update`
Browserslist: caniuse-lite is outdated. Please run next command `npm update`
Browserslist: caniuse-lite is outdated. Please run next command `npm update`
Browserslist: caniuse-lite is outdated. Please run next command `npm update`
 app:progress Compiled SPA in ~23s +23s
 app:artifacts Added build artifact "/src/dash3/dist/spa-mat" +2ms


Version: webpack 4.25.1
Time: 23454ms
Built at: 02/20/2020 7:52:00 PM
                                                  Asset       Size    Chunks             Chunk Names
                              css/373d46b7.5c3c2cc5.css   1.35 KiB  373d46b7  [emitted]
                              css/626d440b.93359f02.css  427 bytes  626d440b  [emitted]
                              css/779837a0.84f75f3b.css   33.8 KiB  779837a0  [emitted]
                                   css/app.638004fd.css    217 KiB       app  [emitted]  app
            fonts/KFOkCnqEu92Fr1MmgVxIIzQ.e9dbbe8a.woff   19.5 KiB            [emitted]
           fonts/KFOlCnqEu92Fr1MmEU9fBBc-.de8b7431.woff   19.5 KiB            [emitted]
           fonts/KFOlCnqEu92Fr1MmSU5fBBc-.a1471d1d.woff   19.4 KiB            [emitted]
           fonts/KFOlCnqEu92Fr1MmWUlfBBc-.cf6613d1.woff   19.4 KiB            [emitted]
           fonts/KFOlCnqEu92Fr1MmYUtfBBc-.8c2ade50.woff   19.5 KiB            [emitted]
               fonts/KFOmCnqEu92Fr1Mu4mxM.bafb105b.woff   19.4 KiB            [emitted]
                     fonts/fa-brands-400.659c4d58.woff2     68 KiB            [emitted]
                      fonts/fa-brands-400.8b7a9afd.woff   79.7 KiB            [emitted]
                     fonts/fa-regular-400.0b5e3a54.woff   17.7 KiB            [emitted]
                    fonts/fa-regular-400.bdadb6ce.woff2   14.5 KiB            [emitted]
                       fonts/fa-solid-900.bcb927a7.woff   93.2 KiB            [emitted]
                      fonts/fa-solid-900.fb493903.woff2   72.1 KiB            [emitted]
       fonts/flUhRq6tzZclQEJ-Vdg-IuiaDsNa.c38ebd3c.woff   70.6 KiB            [emitted]
fonts/flUhRq6tzZclQEJ-Vdg-IuiaDsNcIhQ8tQ.8a9a261c.woff2   53.8 KiB            [emitted]
                                             index.html   1.43 KiB            [emitted]
                                js/373d46b7.88f4e224.js   67.6 KiB  373d46b7  [emitted]
                                js/4b46c4ff.9ddc8ffb.js   12.5 KiB  4b46c4ff  [emitted]
                                js/4b4818b8.cd768103.js   12.1 KiB  4b4818b8  [emitted]
                                js/626d440b.4f41e3ea.js    579 KiB  626d440b  [emitted]
                                js/779837a0.5504a962.js    474 KiB  779837a0  [emitted]
                                     js/app.c6755db2.js   36.9 KiB       app  [emitted]  app
                                 js/runtime.2991c2ae.js   3.19 KiB   runtime  [emitted]  runtime
                                  js/vendor.a63ef26d.js    593 KiB    vendor  [emitted]  vendor
                        statics/LRAUV_icon_color_64.svg   5.22 KiB            [emitted]
                         statics/icons/lrauv-icon16.png    1.3 KiB            [emitted]
                         statics/icons/lrauv-icon32.png   2.82 KiB            [emitted]
                             statics/lrauv-logo-w28.png   2.53 KiB            [emitted]
                           statics/sounds/intuition.mp3   6.53 KiB            [emitted]
                               statics/sounds/light.ogg   8.56 KiB            [emitted]
                               statics/sounds/readme.md  206 bytes            [emitted]
Entrypoint app = js/runtime.2991c2ae.js js/vendor.a63ef26d.js css/app.638004fd.css js/app.c6755db2.js

WARNING in chunk 626d440b [mini-css-extract-plugin]
Conflicting order between:
 * css ./node_modules/css-loader??ref--5-oneOf-2-1!./node_modules/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/src??ref--5-oneOf-2-2!./node_modules/vue-loader/lib??vue-loader-options!./src/components/trackingdb-selection.vue?vue&type=style&index=0&lang=css&
 * css ./node_modules/css-loader??ref--5-oneOf-2-1!./node_modules/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/src??ref--5-oneOf-2-2!./node_modules/vue-loader/lib??vue-loader-options!./src/components/sync-mc-dialog.vue?vue&type=style&index=0&id=9213bd9c&scoped=true&lang=css&

WARNING in chunk 626d440b [mini-css-extract-plugin]
Conflicting order between:
 * css ./node_modules/css-loader??ref--5-oneOf-2-1!./node_modules/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/src??ref--5-oneOf-2-2!./node_modules/vue-loader/lib??vue-loader-options!./src/components/ui-settings.vue?vue&type=style&index=0&id=47d0c8ca&scoped=true&lang=css&
 * css ./node_modules/css-loader??ref--5-oneOf-2-1!./node_modules/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/src??ref--5-oneOf-2-2!./node_modules/vue-loader/lib??vue-loader-options!./src/components/sync-mc-dialog.vue?vue&type=style&index=0&id=9213bd9c&scoped=true&lang=css&

WARNING in chunk 626d440b [mini-css-extract-plugin]
Conflicting order between:
 * css ./node_modules/css-loader??ref--5-oneOf-2-1!./node_modules/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/src??ref--5-oneOf-2-2!./node_modules/vue-loader/lib??vue-loader-options!./src/components/sync-mc-dialog.vue?vue&type=style&index=0&id=9213bd9c&scoped=true&lang=css&
 * css ./node_modules/css-loader??ref--5-oneOf-2-1!./node_modules/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/src??ref--5-oneOf-2-2!./node_modules/vue-loader/lib??vue-loader-options!./src/components/ui-settings.vue?vue&type=style&index=1&lang=css&


 Build succeeded

 Build mode........ spa
 Quasar theme...... mat
 Quasar CLI........ v0.17.24
 Quasar Framework.. v0.17.20
 Debugging......... no
 ==================
 Output folder..... /src/dash3/dist/spa-mat

 Tip: Built files are meant to be served over an HTTP server
      Opening index.html over file:// won't work

 Tip: You can use "$ quasar serve" command to create a web server,
      both for testing or production. Type "$ quasar serve -h" for
      parameters. Also, an npm script (usually named "start") can
      be added for deployment environments.
      If you're using Vue Router "history" mode, don't forget to
      specify the "--history" parameter: "$ quasar serve --history"

Removing intermediate container fb9004745a6b
 ---> 9044b25b906e
Step 10/31 : RUN cd /src/tdusr/  && npm install  && quasar build  && (cd dist/spa-mat && tar zcf ../tdusr.tgz -- *)
 ---> Running in ae457b959b59

> core-js@2.6.10 postinstall /src/tdusr/node_modules/core-js
> node postinstall || echo "ignore"

Thank you for using core-js ( https://github.com/zloirock/core-js ) for polyfilling JavaScript standard library!

The project needs your help! Please consider supporting of core-js on Open Collective or Patreon:
> https://opencollective.com/core-js
> https://www.patreon.com/zloirock

Also, the author of core-js ( https://github.com/zloirock ) is looking for a good job -)

npm WARN optional SKIPPING OPTIONAL DEPENDENCY: fsevents@1.2.9 (node_modules/fsevents):
npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for fsevents@1.2.9: wanted {"os":"darwin","arch":"any"} (current: {"os":"linux","arch":"x64"})

added 1296 packages from 591 contributors and audited 16260 packages in 16.038s
found 5 moderate severity vulnerabilities
  run `npm audit fix` to fix them, or `npm audit` for details

 Build mode........ spa
 Quasar theme...... mat
 Quasar CLI........ v0.17.26
 Quasar Framework.. v0.17.20
 Debugging......... no

 app:quasar-conf Reading quasar.conf.js +0ms
 app:webpack Extending SPA Webpack config +683ms
 app:artifacts Cleaned build artifact: "/src/tdusr/dist/spa-mat" +13ms
 app:generator Generating Webpack entry point +2ms
 app:build Building... +2ms
 app:progress Compiling SPA... +88ms
 app:progress Compiled SPA in ~13s +13s
 app:artifacts Added build artifact "/src/tdusr/dist/spa-mat" +3ms


Version: webpack 4.25.1
Time: 13322ms
Built at: 02/20/2020 7:52:41 PM
                                                  Asset       Size    Chunks             Chunk Names
                              css/01cb74da.e79a73ef.css  279 bytes  01cb74da  [emitted]
                              css/04972dcb.99c4f83d.css  109 bytes  04972dcb  [emitted]
                              css/103eae3a.614be8ea.css   59 bytes  103eae3a  [emitted]
                              css/564a6b12.e4dc4ffb.css   59 bytes  564a6b12  [emitted]
                                   css/app.66e9ca86.css    216 KiB       app  [emitted]  app
            fonts/KFOkCnqEu92Fr1MmgVxIIzQ.e9dbbe8a.woff   19.5 KiB            [emitted]
           fonts/KFOlCnqEu92Fr1MmEU9fBBc-.de8b7431.woff   19.5 KiB            [emitted]
           fonts/KFOlCnqEu92Fr1MmSU5fBBc-.a1471d1d.woff   19.4 KiB            [emitted]
           fonts/KFOlCnqEu92Fr1MmWUlfBBc-.cf6613d1.woff   19.4 KiB            [emitted]
           fonts/KFOlCnqEu92Fr1MmYUtfBBc-.8c2ade50.woff   19.5 KiB            [emitted]
               fonts/KFOmCnqEu92Fr1Mu4mxM.bafb105b.woff   19.4 KiB            [emitted]
                     fonts/fa-brands-400.659c4d58.woff2     68 KiB            [emitted]
                      fonts/fa-brands-400.8b7a9afd.woff   79.7 KiB            [emitted]
                     fonts/fa-regular-400.0b5e3a54.woff   17.7 KiB            [emitted]
                    fonts/fa-regular-400.bdadb6ce.woff2   14.5 KiB            [emitted]
                       fonts/fa-solid-900.bcb927a7.woff   93.2 KiB            [emitted]
                      fonts/fa-solid-900.fb493903.woff2   72.1 KiB            [emitted]
       fonts/flUhRq6tzZclQEJ-Vdg-IuiaDsNa.c38ebd3c.woff   70.6 KiB            [emitted]
fonts/flUhRq6tzZclQEJ-Vdg-IuiaDsNcIhQ8tQ.8a9a261c.woff2   53.8 KiB            [emitted]
                                             index.html   1.57 KiB            [emitted]
                                js/01cb74da.7596df30.js   21.3 KiB  01cb74da  [emitted]
                                js/04972dcb.6ad110e6.js   31.6 KiB  04972dcb  [emitted]
                                js/103eae3a.d678dac5.js   1.69 KiB  103eae3a  [emitted]
                                js/2d0a314a.85a20030.js  630 bytes  2d0a314a  [emitted]
                                js/4b4818b8.f89c036e.js   12.1 KiB  4b4818b8  [emitted]
                                js/564a6b12.209a2465.js   3.57 KiB  564a6b12  [emitted]
                                js/6ae69d83.e696d689.js   17.6 KiB  6ae69d83  [emitted]
                                     js/app.9cf30d04.js   6.66 KiB       app  [emitted]  app
                                 js/runtime.9bd093bf.js   3.29 KiB   runtime  [emitted]  runtime
                                  js/vendor.12bd38bc.js    337 KiB    vendor  [emitted]  vendor
                        statics/LRAUV_icon_color_64.svg   5.22 KiB            [emitted]
                         statics/icons/lrauv-icon16.png    1.3 KiB            [emitted]
                         statics/icons/lrauv-icon32.png   2.82 KiB            [emitted]
                             statics/lrauv-logo-w28.png   2.53 KiB            [emitted]
                                 statics/lrauv-logo.png   6.25 KiB            [emitted]
                                statics/lrauv-logo2.png    4.7 KiB            [emitted]
                                statics/lrauv-logo3.png   60.7 KiB            [emitted]
                                statics/lrauv-logo4.png   15.7 KiB            [emitted]
Entrypoint app = js/runtime.9bd093bf.js js/vendor.12bd38bc.js css/app.66e9ca86.css js/app.9cf30d04.js


 Build succeeded

 Build mode........ spa
 Quasar theme...... mat
 Quasar CLI........ v0.17.26
 Quasar Framework.. v0.17.20
 Debugging......... no
 ==================
 Output folder..... /src/tdusr/dist/spa-mat

 Tip: Built files are meant to be served over an HTTP server
      Opening index.html over file:// won't work

 Tip: You can use "$ quasar serve" command to create a web server,
      both for testing or production. Type "$ quasar serve -h" for
      parameters. Also, an npm script (usually named "start") can
      be added for deployment environments.
      If you're using Vue Router "history" mode, don't forget to
      specify the "--history" parameter: "$ quasar serve --history"

Removing intermediate container ae457b959b59
 ---> 0bd9199980a3
Step 11/31 : FROM mbari/tdbase:0.8
 ---> 61eb0af2504a
Step 12/31 : ARG TETHYSDASH_HOME=/opt/tethysdash
 ---> Running in 5cda8a41bcce
Removing intermediate container 5cda8a41bcce
 ---> 7dfe07c2c41a
Step 13/31 : ARG LRAUV_HOME=/opt/lrauv-application
 ---> Running in e6b5e8919588
Removing intermediate container e6b5e8919588
 ---> 76d9ca10dcc7
Step 14/31 : ARG uid=11035
 ---> Running in 06f787413efa
Removing intermediate container 06f787413efa
 ---> 2880d6cabee6
Step 15/31 : ARG gid=20
 ---> Running in 5a131a0115bb
Removing intermediate container 5a131a0115bb
 ---> 651dab05ef96
Step 16/31 : ARG user=tethysadmin
 ---> Running in cb59feeba646
Removing intermediate container cb59feeba646
 ---> 4c5ce83d3006
Step 17/31 : ARG group=tethysadmin
 ---> Running in 56157cb00cd5
Removing intermediate container 56157cb00cd5
 ---> a61502c715a3
Step 18/31 : RUN mkdir -p ${TETHYSDASH_HOME}/lrauv-repos              ${TETHYSDASH_HOME}/conf              ${TETHYSDASH_HOME}/data              ${TETHYSDASH_HOME}/xsd              ${CATALINA_HOME}/webapps/emaillogs              ${CATALINA_HOME}/webapps/dash3  &&     rm -rf   ${CATALINA_HOME}/webapps/examples              ${CATALINA_HOME}/webapps/docs              ${CATALINA_HOME}/webapps/ROOT/*
 ---> Running in 28a47a7fefd5
Removing intermediate container 28a47a7fefd5
 ---> d5395fed2e96
Step 19/31 : RUN mkdir -p                                  ${TETHYSDASH_HOME}/tools   && ln ${LRAUV_HOME}/bin/unserialize          ${TETHYSDASH_HOME}/tools/  && ln ${LRAUV_HOME}/Tools/runShoreScripts.sh ${TETHYSDASH_HOME}/tools/  && ln ${LRAUV_HOME}/Tools/tethysCentroid.py  ${TETHYSDASH_HOME}/tools/
 ---> Running in 09c86c23f9dc
Removing intermediate container 09c86c23f9dc
 ---> 6cef46294469
Step 20/31 : COPY tethysdash/lib/javax.mail-1.5.2.jar           ${CATALINA_HOME}/lib/
 ---> 2e56c6fbe316
Step 21/31 : COPY --from=backend-builder        /src/tethysdash/TethysDash.war              ${CATALINA_HOME}/webapps/
 ---> a892c18e574b
Step 22/31 : COPY --from=ui-builder /src/tdusr/dist/tdusr.tgz  /tmp/tdusr.tgz
 ---> 88a064627cf4
Step 23/31 : COPY --from=ui-builder /src/dash3/dist/dash3.tgz  /tmp/dash3.tgz
 ---> da1dba36cc9c
Step 24/31 : RUN cd ${CATALINA_HOME}/webapps/ROOT/  && tar xf /tmp/tdusr.tgz  && cd ${CATALINA_HOME}/webapps/dash3/ && tar xf /tmp/dash3.tgz  && rm /tmp/*.tgz
 ---> Running in a91dd876707f
Removing intermediate container a91dd876707f
 ---> aae05e5383e1
Step 25/31 : COPY build/delayedCatalina.sh  ${TETHYSDASH_HOME}/
 ---> 3698c2374c19
Step 26/31 : RUN  chmod +x                  ${TETHYSDASH_HOME}/delayedCatalina.sh
 ---> Running in 894e42d882a1
Removing intermediate container 894e42d882a1
 ---> eee93716d78b
Step 27/31 : RUN useradd --uid ${uid} --gid ${gid} --home-dir ${TETHYSDASH_HOME} ${user}  && chown -R ${uid}:${gid} ${TETHYSDASH_HOME}  && chown -R ${uid}:${gid} ${LRAUV_HOME}  && chown -R ${uid}:${gid} ${CATALINA_HOME}
 ---> Running in 2cbebf680687
useradd: warning: the home directory already exists.
Not copying any file from skel directory into it.
Removing intermediate container 2cbebf680687
 ---> 00cb3741268c
Step 28/31 : USER ${user}
 ---> Running in d8e34bb8c840
Removing intermediate container d8e34bb8c840
 ---> b7181c682ec5
Step 29/31 : WORKDIR    ${TETHYSDASH_HOME}
 ---> Running in 2884a40f7cd0
Removing intermediate container 2884a40f7cd0
 ---> d9c00691b746
Step 30/31 : ENTRYPOINT ["./delayedCatalina.sh"]
 ---> Running in 2fac06646776
Removing intermediate container 2fac06646776
 ---> 4b0ab1412b5e
Step 31/31 : CMD        []
 ---> Running in 1580f5b6f44c
Removing intermediate container 1580f5b6f44c
 ---> 8be81fec03ba
[Warning] One or more build-args [DASH3_VERSION TDUSR_VERSION] were not consumed
Successfully built 8be81fec03ba
Successfully tagged mbari/tethysdash:3.9.73

Comments (0)

HTTPS SSH

You can clone a snippet to your computer for local editing. Learn more.