[wip]helmchart
Some checks failed
CI / Rustfmt (push) Successful in 1m30s
Publish Images And Chart / Resolve Publish Metadata (push) Failing after 2s
Publish Images And Chart / Publish init-packs (push) Has been skipped
Publish Images And Chart / Publish init-user (push) Has been skipped
Publish Images And Chart / Publish migrations (push) Has been skipped
Publish Images And Chart / Publish sensor (push) Has been skipped
Publish Images And Chart / Publish web (push) Has been skipped
Publish Images And Chart / Publish worker (push) Has been skipped
Publish Images And Chart / Publish api (push) Has been skipped
Publish Images And Chart / Publish executor (push) Has been skipped
Publish Images And Chart / Publish notifier (push) Has been skipped
Publish Images And Chart / Publish Helm Chart (push) Has been skipped
CI / Web Blocking Checks (push) Successful in 1m55s
CI / Security Advisory Checks (push) Failing after 13m14s
CI / Web Advisory Checks (push) Failing after 13m20s
CI / Security Blocking Checks (push) Failing after 13m31s
CI / Cargo Audit & Deny (push) Failing after 14m51s
CI / Tests (push) Failing after 14m53s
CI / Clippy (push) Failing after 14m59s
Some checks failed
CI / Rustfmt (push) Successful in 1m30s
Publish Images And Chart / Resolve Publish Metadata (push) Failing after 2s
Publish Images And Chart / Publish init-packs (push) Has been skipped
Publish Images And Chart / Publish init-user (push) Has been skipped
Publish Images And Chart / Publish migrations (push) Has been skipped
Publish Images And Chart / Publish sensor (push) Has been skipped
Publish Images And Chart / Publish web (push) Has been skipped
Publish Images And Chart / Publish worker (push) Has been skipped
Publish Images And Chart / Publish api (push) Has been skipped
Publish Images And Chart / Publish executor (push) Has been skipped
Publish Images And Chart / Publish notifier (push) Has been skipped
Publish Images And Chart / Publish Helm Chart (push) Has been skipped
CI / Web Blocking Checks (push) Successful in 1m55s
CI / Security Advisory Checks (push) Failing after 13m14s
CI / Web Advisory Checks (push) Failing after 13m20s
CI / Security Blocking Checks (push) Failing after 13m31s
CI / Cargo Audit & Deny (push) Failing after 14m51s
CI / Tests (push) Failing after 14m53s
CI / Clippy (push) Failing after 14m59s
This commit is contained in:
10
docker/Dockerfile.init-packs
Normal file
10
docker/Dockerfile.init-packs
Normal file
@@ -0,0 +1,10 @@
|
||||
FROM python:3.11-slim
|
||||
|
||||
COPY packs /source/packs
|
||||
COPY scripts/load_core_pack.py /scripts/load_core_pack.py
|
||||
COPY docker/init-packs.sh /init-packs.sh
|
||||
|
||||
RUN pip install --no-cache-dir psycopg2-binary pyyaml && \
|
||||
chmod +x /init-packs.sh
|
||||
|
||||
CMD ["/bin/sh", "/init-packs.sh"]
|
||||
7
docker/Dockerfile.init-user
Normal file
7
docker/Dockerfile.init-user
Normal file
@@ -0,0 +1,7 @@
|
||||
FROM postgres:16-alpine
|
||||
|
||||
COPY docker/init-user.sh /init-user.sh
|
||||
|
||||
RUN chmod +x /init-user.sh
|
||||
|
||||
CMD ["/bin/sh", "/init-user.sh"]
|
||||
9
docker/Dockerfile.migrations
Normal file
9
docker/Dockerfile.migrations
Normal file
@@ -0,0 +1,9 @@
|
||||
FROM postgres:16-alpine
|
||||
|
||||
COPY migrations /migrations
|
||||
COPY docker/run-migrations.sh /run-migrations.sh
|
||||
COPY docker/init-roles.sql /docker/init-roles.sql
|
||||
|
||||
RUN chmod +x /run-migrations.sh
|
||||
|
||||
CMD ["/bin/sh", "/run-migrations.sh"]
|
||||
Reference in New Issue
Block a user