mirror of
https://github.com/beak-insights/felicity-lims.git
synced 2025-02-21 07:22:53 +08:00
13 lines
503 B
Text
13 lines
503 B
Text
|
// Publish changes to nmrl docker registry
|
||
|
// For every push change and bump the version up
|
||
|
|
||
|
// Server All in one
|
||
|
sudo docker build -f Dockerfile.prod --target server-aio -t amusendame/felicity-lims:aio-0.1.1 .
|
||
|
docker push amusendame/felicity-lims:aio-0.1.1
|
||
|
|
||
|
// Server API
|
||
|
sudo docker build -f Dockerfile.prod --target server-api -t amusendame/felicity-lims:api-0.1.1 .
|
||
|
docker push amusendame/felicity-lims:api-0.1.1
|
||
|
|
||
|
// View a summary of image vulnerabilities and recommendations
|
||
|
docker scout quickview
|