Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/scans.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ jobs:
severity-cutoff: "high"
fail-build: false
by-cve: "true"
only-fixed: true

- name: Upload Anchore Report
uses: github/codeql-action/upload-sarif@v3
Expand Down
33 changes: 18 additions & 15 deletions build/util/alpine/install-dependencies.sh
Original file line number Diff line number Diff line change
@@ -1,18 +1,21 @@
#!/bin/sh
set -e

apk update && apk add curl \
jq \
bash \
openssl \
libgcc \
libstdc++ \
libx11 \
glib \
libxrender \
libxext \
libintl \
shadow \
fontconfig \
&& rm -f /var/cache/apk/*

apk update

apk upgrade

apk add curl \
jq \
bash \
openssl \
libgcc \
libstdc++ \
libx11 \
glib \
libxrender \
libxext \
libintl \
shadow \
fontconfig \
&& rm -f /var/cache/apk/*
9 changes: 8 additions & 1 deletion build/util/debian/install-dependencies.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,14 @@
#!/bin/sh
set -e

apt-get update && apt-get install --assume-yes \
apt-get update

# Upgrade all packages
apt-get -y upgrade

apt-get autoremove -y

apt-get install --assume-yes \
apt-utils \
ca-certificates \
curl \
Expand Down
7 changes: 7 additions & 0 deletions build/util/ubi9/install-dependencies.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
#!/bin/sh
set -e

microdnf upgrade \
--refresh \
--best \
--nodocs \
--noplugins \
--setopt=install_weak_deps=0

microdnf install -y \
jq \
procps \
Expand Down
2 changes: 1 addition & 1 deletion builds/alpine/Adobe2021.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ LABEL maintainer "Jon Clausen <jclausen@ortussolutions.com>"
LABEL repository "https://github.com/Ortus-Solutions/docker-commandbox"

#Hard Code our engine environment
ENV BOX_SERVER_APP_CFENGINE adobe@2021.0.20+330407
ENV BOX_SERVER_APP_CFENGINE adobe@2021.0.22+330451

# WARM UP THE SERVER
RUN ${BUILD_DIR}/util/warmup-server.sh
2 changes: 1 addition & 1 deletion builds/alpine/Adobe2023.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ LABEL maintainer "Jon Clausen <jclausen@ortussolutions.com>"
LABEL repository "https://github.com/Ortus-Solutions/docker-commandbox"

#Hard Code our engine environment
ENV BOX_SERVER_APP_CFENGINE adobe@2023.0.14+330784
ENV BOX_SERVER_APP_CFENGINE adobe@2023.0.16+330828

# WARM UP THE SERVER
RUN ${BUILD_DIR}/util/warmup-server.sh
2 changes: 1 addition & 1 deletion builds/alpine/Adobe2025.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ LABEL repository "https://github.com/Ortus-Solutions/docker-commandbox"


#Hard Code our engine environment
ENV BOX_SERVER_APP_CFENGINE adobe@2025.0.02+331451
ENV BOX_SERVER_APP_CFENGINE adobe@2025.0.04+331512

# WARM UP THE SERVER
RUN ${BUILD_DIR}/util/warmup-server.sh
2 changes: 1 addition & 1 deletion builds/debian/Adobe2021.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ LABEL maintainer "Jon Clausen <jclausen@ortussolutions.com>"
LABEL repository "https://github.com/Ortus-Solutions/docker-commandbox"

#Hard Code our engine environment
ENV BOX_SERVER_APP_CFENGINE adobe@2021.0.20+330407
ENV BOX_SERVER_APP_CFENGINE adobe@2021.0.22+330451

# WARM UP THE SERVER
RUN ${BUILD_DIR}/util/warmup-server.sh
2 changes: 1 addition & 1 deletion builds/debian/Adobe2023.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ LABEL maintainer "Jon Clausen <jclausen@ortussolutions.com>"
LABEL repository "https://github.com/Ortus-Solutions/docker-commandbox"

#Hard Code our engine environment
ENV BOX_SERVER_APP_CFENGINE adobe@2023.0.14+330784
ENV BOX_SERVER_APP_CFENGINE adobe@2023.0.16+330828

# WARM UP THE SERVER
RUN ${BUILD_DIR}/util/warmup-server.sh
2 changes: 1 addition & 1 deletion builds/debian/Adobe2025.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ LABEL repository "https://github.com/Ortus-Solutions/docker-commandbox"


#Hard Code our engine environment
ENV BOX_SERVER_APP_CFENGINE adobe@2025.0.02+331451
ENV BOX_SERVER_APP_CFENGINE adobe@2025.0.04+331512

# WARM UP THE SERVER
RUN ${BUILD_DIR}/util/warmup-server.sh
2 changes: 1 addition & 1 deletion builds/ubi9/Adobe2021.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ LABEL maintainer "Jon Clausen <jclausen@ortussolutions.com>"
LABEL repository "https://github.com/Ortus-Solutions/docker-commandbox"

#Hard Code our engine environment
ENV BOX_SERVER_APP_CFENGINE adobe@2021.0.20+330407
ENV BOX_SERVER_APP_CFENGINE adobe@2021.0.22+330451

# WARM UP THE SERVER
RUN ${BUILD_DIR}/util/warmup-server.sh
2 changes: 1 addition & 1 deletion builds/ubi9/Adobe2023.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ LABEL maintainer "Jon Clausen <jclausen@ortussolutions.com>"
LABEL repository "https://github.com/Ortus-Solutions/docker-commandbox"

#Hard Code our engine environment
ENV BOX_SERVER_APP_CFENGINE adobe@2023.0.14+330784
ENV BOX_SERVER_APP_CFENGINE adobe@2023.0.16+330828

# WARM UP THE SERVER
RUN ${BUILD_DIR}/util/warmup-server.sh
2 changes: 1 addition & 1 deletion builds/ubi9/Adobe2025.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ LABEL repository "https://github.com/Ortus-Solutions/docker-commandbox"


#Hard Code our engine environment
ENV BOX_SERVER_APP_CFENGINE adobe@2025.0.02+331451
ENV BOX_SERVER_APP_CFENGINE adobe@2025.0.04+331512

# WARM UP THE SERVER
RUN ${BUILD_DIR}/util/warmup-server.sh
14 changes: 14 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

----

## [Unreleased]

### Changed

- Add pre-dependendency install upgrades of packages to ensure latest security patches are applied

## [6.2.1/3.13.7] - 2025-09-20

### Changed

- Adobe Coldfusion 2021 updated to `2021.0.22+330451`
- Adobe Coldfusion 2023 updated to `2023.0.16+330828`
- Adobe Coldfusion 2025 updated to `2025.0.04+331512`

## [6.2.1/3.13.6] - 2025-08-06

### Changed
Expand Down