1.1.2-r0 release

Update parse-dashboard to 1.1.2
This commit is contained in:
Bitnami Bot 2017-10-27 18:43:18 +00:00
parent 0af61ff6e8
commit 7bb50c8ce5
3 changed files with 68 additions and 40 deletions

View File

@ -1,17 +1,15 @@
FROM bitnami/minideb-extras:jessie-r19
FROM bitnami/minideb-extras:jessie-r22
LABEL maintainer "Bitnami <containers@bitnami.com>"
# Install required system packages and dependencies
RUN install_packages ghostscript imagemagick libbz2-1.0 libc6 libgcc1 libmysqlclient18 libncurses5 libreadline6 libsqlite3-0 libssl1.0.0 libstdc++6 libtinfo5 zlib1g
RUN bitnami-pkg install node-4.8.3-0 --checksum 82ac604d6b97bd2070c8ff613de802096e5addd644d6817745ca2aa71d689aa3
RUN bitnami-pkg unpack parse-dashboard-1.1.0-0 --checksum a1b9847ff4776a5ac69715ed6a6ab8e022e02343028501e76d9fe278595946f3
RUN bitnami-pkg install node-4.8.5-0 --checksum e4c1b99ede6d5c86cd94bf449704f0454de44104d3fb71bb3c0040b8cb84f2fe
RUN bitnami-pkg unpack parse-dashboard-1.1.2-0 --checksum d760113e6749bea92d384908ec94c0f8ca470f60e1db08f11fb4344363aa57ba
COPY rootfs /
ENV BITNAMI_APP_NAME="parse-dashboard" \
BITNAMI_IMAGE_VERSION="1.1.0-r0" \
BITNAMI_IMAGE_VERSION="1.1.2-r0" \
PARSE_APP_ID="myappID" \
PARSE_DASHBOARD_APP_NAME="MyDashboard" \
PARSE_DASHBOARD_PASSWORD="bitnami" \
@ -22,9 +20,6 @@ ENV BITNAMI_APP_NAME="parse-dashboard" \
PARSE_PORT_NUMBER="1337" \
PATH="/opt/bitnami/node/bin:$PATH"
EXPOSE 4040
ENTRYPOINT ["/app-entrypoint.sh"]

View File

@ -4,7 +4,6 @@
. /opt/bitnami/base/helpers
print_welcome_page
check_for_updates &
if [[ "$1" == "nami" && "$2" == "start" ]] || [[ "$1" == "/init.sh" ]]; then
nami_initialize parse-dashboard

View File

@ -1,32 +1,66 @@
machine:
services:
- docker
environment:
RELEASE_SERIES_LIST: 1
LATEST_STABLE: 1
IMAGE_NAME: parse-dashboard
CHART_NAME: parse
CHART_REPO: https://github.com/bitnami/charts
DOCKER_PROJECT: bitnami
QUAY_PROJECT: bitnami
GCLOUD_PROJECT: bitnami-containers
version: 2
jobs:
build:
working_directory: /workdir
docker:
- image: docker:17.06.0-ce-git
environment:
RELEASE_SERIES_LIST: "1"
LATEST_STABLE: "1"
IMAGE_NAME: parse-dashboard
CHART_NAME: parse
CHART_REPO: https://github.com/kubernetes/charts
SKIP_CHART_APP_VERSION_UPDATE: "1"
DOCKER_PROJECT: bitnami
QUAY_PROJECT: bitnami
GCLOUD_PROJECT: bitnami-containers
dependencies:
override:
- docker info
- gcloud version
- curl -sL https://raw.githubusercontent.com/bitnami/test-infra/master/circle/docker-pull-cache.sh | bash -
steps:
- checkout
- setup_remote_docker:
version: 17.06.0-ce
- run:
name: Upgrade system packages (workaround - https://github.com/docker-library/docker/issues/72)
command: |
apk upgrade --no-cache
- run:
name: Install dependencies
command: |
apk add --no-cache curl bash coreutils
- run:
name: Docker info
command: |
docker version
docker info
- restore_cache:
keys:
- cache-{{ .Branch }}
paths:
- /cache/layers.tar
- run:
name: Build docker image
command: |
curl -sL https://raw.githubusercontent.com/bitnami/test-infra/master/circle/docker-image-test.sh | bash -
- save_cache:
key: cache-{{ .Branch }}-{{ epoch }}
paths:
- /cache/layers.tar
- deploy:
name: Publish docker image
command: |
if [ -n "${CIRCLE_TAG}" ]; then
curl -sL https://raw.githubusercontent.com/bitnami/test-infra/master/circle/docker-release-image.sh | bash -
elif [ "${CIRCLE_BRANCH}" == "master" ]; then
curl -sL https://raw.githubusercontent.com/bitnami/test-infra/master/circle/docker-development-image.sh | bash -
fi
test:
override:
- curl -sL https://raw.githubusercontent.com/bitnami/test-infra/master/circle/docker-image-test.sh | bash -
deployment:
development:
branch: master
commands:
- curl -sL https://raw.githubusercontent.com/bitnami/test-infra/master/circle/docker-development-image.sh | bash -
release:
tag: /^[0-9].*-r[0-9]+$/
commands:
- curl -sL https://raw.githubusercontent.com/bitnami/test-infra/master/circle/docker-release-image.sh | bash -
workflows:
version: 2
build-and-deploy:
jobs:
- build:
filters:
branches:
only: /.*/
tags:
only: /^[0-9].*-r[0-9]+$/