UNCLASSIFIED

hardening_manifest.yaml 3.88 KB
Newer Older
1 2 3 4 5 6 7 8 9 10
---
apiVersion: v1

# The repository name in registry1, excluding /ironbank/
name: "opensource/wordpress/wordpress"

# List of tags to push for the repository in registry1
# The most specific version should be the first tag and will be shown
# on ironbank.dsop.io
tags:
11
- "5.7.2"
12 13 14 15 16
- "latest"

# Build args passed to Dockerfile ARGs
args:
  BASE_IMAGE: "redhat/ubi/ubi8"
sean.melissari's avatar
sean.melissari committed
17
  BASE_TAG: "8.4"
18 19 20 21 22

# Docker image labels
labels:
  org.opencontainers.image.title: "wordpress"
  ## Human-readable description of the software packaged in the image
sean.melissari's avatar
sean.melissari committed
23
  org.opencontainers.image.description: "WordPress is a free and open source blogging tool and a content management system."
24
  ## License(s) under which contained software is distributed
sean.melissari's avatar
sean.melissari committed
25
  org.opencontainers.image.licenses: "GPL-2.0-or-later"
26
  ## URL to find more information on the image
sean.melissari's avatar
sean.melissari committed
27
  org.opencontainers.image.url: "https://github.com/WordPress/WordPress"
28
  ## Name of the distributing entity, organization or individual
sean.melissari's avatar
sean.melissari committed
29
  org.opencontainers.image.vendor: "WordPress"
30
  org.opencontainers.image.version: "5.7.2"
31
  ## Keywords to help with search (ex. "cicd,gitops,golang")
sean.melissari's avatar
sean.melissari committed
32
  mil.dso.ironbank.image.keywords: "blog,cms"
33
  ## This value can be "opensource" or "commercial"
sean.melissari's avatar
sean.melissari committed
34
  mil.dso.ironbank.image.type: "opensource"
35
  ## Product the image belongs to for grouping multiple images
sean.melissari's avatar
sean.melissari committed
36
  mil.dso.ironbank.product.name: "WordPress"
37 38 39

# List of resources to make available to the offline build context
resources:
40
- tag: wordpress:5.7.2
41
  url: docker://docker.io/library/wordpress@sha256:30a615ff1fe9849ba68d31227646e9a014ba12e8e589ecc2fc5c96eb406b6387
42
- filename: httpd.tar.gz
43
  url: https://archive.apache.org/dist/httpd/httpd-2.4.48.tar.gz
44 45
  validation:
    type: sha256
46
    value: 315c0bc50206b866fb17c2cdc28c1973765a8d59ca168b80286e8cb077d0510e
47 48 49 50 51 52 53 54 55 56 57
- filename: apr.tar.gz
  url: https://downloads.apache.org/apr/apr-1.7.0.tar.gz
  validation:
    type: sha256
    value: 48e9dbf45ae3fdc7b491259ffb6ccf7d63049ffacbc1c0977cced095e4c2d5a2
- filename: apr-util.tar.gz
  url: https://downloads.apache.org/apr/apr-util-1.6.1.tar.gz
  validation:
    type: sha256
    value: b65e40713da57d004123b6319828be7f1273fbc6490e145874ee1177e112c459
- filename: nghttp2.tar.gz
58
  url: https://github.com/nghttp2/nghttp2/releases/download/v1.43.0/nghttp2-1.43.0.tar.gz
59 60
  validation:
    type: sha256
61
    value: 45cc3ed91966551f92b31958ceca9b3a9f23ce4faf5cbedb78aa3327cd4e5907
62
- filename: php.tar.gz
sean.melissari's avatar
sean.melissari committed
63
  url: https://github.com/php/php-src/archive/refs/tags/php-7.4.19.tar.gz
64 65
  validation:
    type: sha256
sean.melissari's avatar
sean.melissari committed
66
    value: 26eee7284b6daca6acd318ed06ae00e053a84abd2cf53935f9ed9d9a39c55179
67
- filename: re2c.tar.gz
68
  url: https://github.com/skvadrik/re2c/archive/2.1.1.tar.gz
69 70
  validation:
    type: sha256
71
    value: 6ce465687b0037e49da7b6ffb0ed7f829702ca083c6c5eedbd1a5142e6d7f8fa
72 73 74 75 76 77
- filename: libsodium.tar.gz
  url: https://github.com/jedisct1/libsodium/releases/download/1.0.18-RELEASE/libsodium-1.0.18.tar.gz
  validation:
    type: sha256
    value: 6f504490b342a4f8a4c4a02fc9b866cbef8622d5df4e5452b46be121e46636c1
- filename: bison.tar.gz
sean.melissari's avatar
sean.melissari committed
78
  url: https://ftp.gnu.org/gnu/bison/bison-3.7.6.tar.gz
79 80
  validation:
    type: sha256
sean.melissari's avatar
sean.melissari committed
81
    value: 69dc0bb46ea8fc307d4ca1e0b61c8c355eb207d0b0c69f4f8462328e74d7b9ea 
82 83 84 85 86
- filename: texinfo.tar.gz
  url: https://ftp.gnu.org/gnu/texinfo/texinfo-6.7.tar.gz
  validation:
    type: sha256
    value: a52d05076b90032cb2523673c50e53185938746482cf3ca0213e9b4b50ac2d3e
sean.melissari's avatar
sean.melissari committed
87
- filename: "imagemagick.tar.gz"
Seed Admin's avatar
Seed Admin committed
88
  url: https://github.com/ImageMagick/ImageMagick/archive/refs/tags/7.0.11-14.tar.gz
89 90
  validation:
    type: sha256
Seed Admin's avatar
Seed Admin committed
91
    value: dfa5aa3f7f289f12c2f9ee6c7c19b02ae857b4eec02f40298f60f5c11048a016
92
- filename: imagick.tar.gz
Elvis Chi's avatar
Elvis Chi committed
93
  url: https://github.com/Imagick/imagick/archive/3.5.0.tar.gz
94 95
  validation:
    type: sha256
Elvis Chi's avatar
Elvis Chi committed
96
    value: f32fb86fefb8531fc32768b9732305f8ada14f249cf3b74c9aaa664c6ae38c27
97 98 99

# List of project maintainers
maintainers:
sean.melissari's avatar
sean.melissari committed
100 101 102 103
- name: "Sean Melissari"
  username: "sean.melissari"
  email: "melissari_sean@bah.com"
  cht_member: true