4.17.3-debian-10-r34 release
This commit is contained in:
parent
d47e06bb49
commit
ee5c652da4
|
|
@ -26,7 +26,7 @@ RUN mkdir -p /dist /app /.npm /.config /.cache /.local && chmod g+rwX /dist /app
|
|||
RUN /opt/bitnami/scripts/express/postunpack.sh
|
||||
ENV APP_VERSION="4.17.3" \
|
||||
BITNAMI_APP_NAME="express" \
|
||||
BITNAMI_IMAGE_VERSION="4.17.3-debian-10-r33" \
|
||||
BITNAMI_IMAGE_VERSION="4.17.3-debian-10-r34" \
|
||||
PATH="/opt/bitnami/python/bin:/opt/bitnami/node/bin:/opt/bitnami/sequelize-cli/bin:/opt/bitnami/git/bin:/opt/bitnami/bower/bin:/opt/bitnami/common/bin:/opt/bitnami/express/bin:$PATH"
|
||||
|
||||
EXPOSE 3000
|
||||
|
|
|
|||
|
|
@ -1,5 +1,6 @@
|
|||
## Dockerfile for building production image
|
||||
FROM bitnami/express:{{BITNAMI_IMAGE_VERSION}}
|
||||
## Dockerfile for building production image.
|
||||
## Consider replacing below rolling tag by a digest or a immutable tag
|
||||
FROM bitnami/express:{{APP_VERSION}}
|
||||
LABEL maintainer "John Smith <john.smith@acme.com>"
|
||||
|
||||
ENV DISABLE_WELCOME_MESSAGE=1
|
||||
|
|
|
|||
|
|
@ -107,7 +107,7 @@ express_validate() {
|
|||
# None
|
||||
#########################
|
||||
express_initialize() {
|
||||
# Devlopers use the /app mountpoint
|
||||
# Developers use the /app mountpoint
|
||||
if is_dir_empty "/app"; then
|
||||
info "Creating Express application in /app"
|
||||
cd /app || return 1
|
||||
|
|
@ -154,7 +154,7 @@ express_initialize() {
|
|||
if [[ ! -f Dockerfile ]]; then
|
||||
info "Adding Dockerfile"
|
||||
cp /dist/Dockerfile.tpl Dockerfile
|
||||
sed -i 's/{{BITNAMI_IMAGE_VERSION}}/'"$BITNAMI_IMAGE_VERSION"'/g' Dockerfile
|
||||
sed -i 's/{{APP_VERSION}}/'"$APP_VERSION"'/g' Dockerfile
|
||||
[[ ! -f bower.json ]] && sed -i '/^RUN bower install/d' Dockerfile
|
||||
|
||||
if [[ ! -f .dockerignore ]]; then
|
||||
|
|
|
|||
|
|
@ -37,7 +37,7 @@ $ docker-compose up
|
|||
Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/).
|
||||
|
||||
|
||||
* [`4`, `4-debian-10`, `4.17.3`, `4.17.3-debian-10-r33`, `latest` (4/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-express/blob/4.17.3-debian-10-r33/4/debian-10/Dockerfile)
|
||||
* [`4`, `4-debian-10`, `4.17.3`, `4.17.3-debian-10-r34`, `latest` (4/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-express/blob/4.17.3-debian-10-r34/4/debian-10/Dockerfile)
|
||||
|
||||
Subscribe to project updates by watching the [bitnami/codiad GitHub repo](https://github.com/bitnami/bitnami-docker-codiad).
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue