Compare commits
No commits in common. "ccf10748cd6e1e8d51b0e05e835f0911b8edcbbe" and "9cb9fb2d619f4eb8921bd68e93103c4e441a03f3" have entirely different histories.
ccf10748cd
...
9cb9fb2d61
9 changed files with 15 additions and 2 deletions
|
@ -112,4 +112,4 @@ jitsi-image-test-publish:
|
|||
<<: *tag_only
|
||||
stage: image
|
||||
script:
|
||||
- cd infrastructure/app && pyb image publish
|
||||
- cd infrastructure/docker-jitsi-web && pyb image test publish
|
|
@ -26,7 +26,7 @@ def initialize(project):
|
|||
"image_tag": f"{image_tag}",
|
||||
}
|
||||
|
||||
project.build_depends_on("ddadevops>=4.7.0")
|
||||
project.build_depends_on("ddadevops>=4.0.0")
|
||||
|
||||
build = DevopsImageBuild(project, input)
|
||||
build.initialize_build_dir()
|
11
infrastructure/docker-jitsi-web/test/Dockerfile
Normal file
11
infrastructure/docker-jitsi-web/test/Dockerfile
Normal file
|
@ -0,0 +1,11 @@
|
|||
FROM c4k-jitsi
|
||||
|
||||
RUN apt update
|
||||
RUN apt -yqq --no-install-recommends --yes install curl default-jre-headless
|
||||
|
||||
RUN curl -L -o /tmp/serverspec.jar \
|
||||
https://github.com/DomainDrivenArchitecture/dda-serverspec-crate/releases/download/1.3.4/dda-serverspec-standalone.jar
|
||||
|
||||
COPY serverspec.edn /tmp/serverspec.edn
|
||||
|
||||
RUN java -jar /tmp/serverspec.jar /tmp/serverspec.edn -v
|
2
infrastructure/docker-jitsi-web/test/serverspec.edn
Normal file
2
infrastructure/docker-jitsi-web/test/serverspec.edn
Normal file
|
@ -0,0 +1,2 @@
|
|||
{:file [{:path "/usr/local/bin/install-debug.sh" :mod "700"}
|
||||
{:path "/defaults/settings-config.js" :mod "644"}]}
|
Loading…
Reference in a new issue