Skip to content

Commit 7ff5608

Browse files
authored
Merge pull request #376 from klpx/docker-bash-annotate-requirement
doc(dockerfiles): Add Bash to requirements list of Dockerfile/image
2 parents 641cbac + a3bd63b commit 7ff5608

2 files changed

Lines changed: 2 additions & 0 deletions

File tree

src/applications/using-docker-images.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ In order to deploy Docker images, they must conform to the following requirement
2626
* The Dockerfile must use the `EXPOSE` directive to expose exactly one port.
2727
* That port must be listening for an HTTP connection.
2828
* The Dockerfile must use the `CMD` directive to define the default process that will run within the container.
29+
* The Docker image must contain [bash](https://www.gnu.org/software/bash/) to run processes.
2930

3031

3132
## Create an Application

src/applications/using-dockerfiles.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ In order to deploy Dockerfile applications, they must conform to the following r
1919
* The Dockerfile must use the `EXPOSE` directive to expose exactly one port.
2020
* That port must be listening for an HTTP connection.
2121
* The Dockerfile must use the `CMD` directive to define the default process that will run within the container.
22+
* The Docker image must contain [bash](https://www.gnu.org/software/bash/) to run processes.
2223

2324

2425
## Create an Application

0 commit comments

Comments
 (0)