mirror of
https://github.com/project-zot/zot.git
synced 2024-12-16 21:56:37 -05:00
ed4954ab0d
Update the default value of the EXTENSIONS variable in the makefile. Also cleanup binary-ui and other make targets assuming the UI was not included by default. Enable the ui by default in the zot container image Swith back to using the distroless images, as c3 only has amd64 images. Fix updating security events in github (permission issue) Add an integration test for the UI extension Rename ui extension files to use _ instead of - feat(ui): upgrade to zui v2.0.0-rc3 Signed-off-by: Andrei Aaron <aaaron@luxoft.com>
73 lines
1.8 KiB
YAML
73 lines
1.8 KiB
YAML
build:
|
|
from:
|
|
type: docker
|
|
url: docker://ghcr.io/project-zot/golang:1.19
|
|
binds:
|
|
- ../. -> /zotcopy
|
|
run: |
|
|
export GO111MODULE=on
|
|
export GOPATH='/go'
|
|
export HOME='/root'
|
|
export PATH='/go/bin:/usr/local/go/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin'
|
|
mkdir -p /go/src/github.com/project-zot
|
|
cd /go/src/github.com/project-zot
|
|
git clone /zotcopy zot
|
|
cd /go/src/github.com/project-zot/zot
|
|
make COMMIT=${{COMMIT}} OS=${{OS}} ARCH=${{ARCH}} RELEASE_TAG=${{RELEASE_TAG}} clean binary${{EXT:}}
|
|
cat > config.json << EOF
|
|
{
|
|
"storage":{
|
|
"rootDirectory":"/var/lib/registry"
|
|
},
|
|
"http":{
|
|
"address":"0.0.0.0",
|
|
"port":"5000"
|
|
},
|
|
"log":{
|
|
"level":"debug"
|
|
},
|
|
"extensions": {
|
|
"search": {
|
|
"enable": true,
|
|
"cve": {
|
|
"updateInterval": "2h"
|
|
}
|
|
},
|
|
"ui": {
|
|
"enable": true
|
|
}
|
|
}
|
|
}
|
|
EOF
|
|
|
|
cat config.json
|
|
mkdir -p /zotcopy/.build/${{REPO_NAME}}
|
|
cd /zotcopy/.build/${{REPO_NAME}}
|
|
|
|
mkdir -p binary/ cert/ config/
|
|
|
|
cp /go/src/github.com/project-zot/zot/bin/zot-${{OS}}-${{ARCH}}${{EXT:}} binary/
|
|
cp /go/src/github.com/project-zot/zot/config.json config/
|
|
cp /etc/ssl/certs/ca-certificates.crt cert/
|
|
build_only: true
|
|
|
|
"${{REPO_NAME:zot}}":
|
|
os: ${{OS}}
|
|
arch: ${{ARCH}}
|
|
from:
|
|
type: docker
|
|
url: docker://gcr.io/distroless/base:latest-${{ARCH}}
|
|
overlay_dirs:
|
|
- source: ../.build/${{REPO_NAME}}/binary
|
|
dest: /usr/local/bin
|
|
- source: ../.build/${{REPO_NAME}}/cert
|
|
dest: /etc/ssl/certs
|
|
- source: ../.build/${{REPO_NAME}}/config
|
|
dest: /etc/zot
|
|
entrypoint:
|
|
- /usr/local/bin/zot-${{OS}}-${{ARCH}}${{EXT:}}
|
|
volumes:
|
|
- /var/lib/registry
|
|
cmd:
|
|
- serve
|
|
- /etc/zot/config.json
|