1.2.0-ol-7-r10 release
Fix command output redirection to log file.
This commit is contained in:
parent
be731ccbb5
commit
fe3d2940e2
|
|
@ -1,14 +1,14 @@
|
|||
FROM bitnami/oraclelinux-extras:7-r27
|
||||
FROM bitnami/oraclelinux-extras:7-r69
|
||||
LABEL maintainer "Bitnami <containers@bitnami.com>"
|
||||
|
||||
# Install required system packages and dependencies
|
||||
RUN install_packages bzip2-libs glibc keyutils-libs krb5-libs libcom_err libgcc libselinux libstdc++ ncurses-libs nss-softokn-freebl openssl-libs pcre readline sqlite zlib
|
||||
RUN bitnami-pkg install node-8.11.3-0 --checksum 0f9b299a5add60d28a967ab89a269a7f313f500a26b43ca825c47d878dff137d
|
||||
RUN bitnami-pkg unpack parse-dashboard-1.2.0-1 --checksum bbf1798b6177379ea631887dc9d12862c14fa675f43105b5b25ddc0cc266b3bc
|
||||
RUN bitnami-pkg install node-8.11.3-1 --checksum f457660e600261ad94b1a3c626348be4bcd31ed27e15925b8ab035a0e3cbb9a1
|
||||
RUN bitnami-pkg unpack parse-dashboard-1.2.0-2 --checksum f2bee5ee6b3be72a5b15d5e7ce4679f82e2d786c3045fb754e07818cf10d73d3
|
||||
|
||||
COPY rootfs /
|
||||
ENV BITNAMI_APP_NAME="parse-dashboard" \
|
||||
BITNAMI_IMAGE_VERSION="1.2.0-ol-7-r9" \
|
||||
BITNAMI_IMAGE_VERSION="1.2.0-ol-7-r10" \
|
||||
PARSE_APP_ID="myappID" \
|
||||
PARSE_DASHBOARD_APP_NAME="MyDashboard" \
|
||||
PARSE_DASHBOARD_PASSWORD="bitnami" \
|
||||
|
|
|
|||
|
|
@ -27,7 +27,10 @@ $ docker-compose up -d
|
|||
|
||||
> NOTE: Debian 8 images have been deprecated in favor of Debian 9 images. Bitnami will not longer publish new Docker images based on Debian 8.
|
||||
|
||||
Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/containers/how-to/understand-rolling-tags-containers/).
|
||||
|
||||
|
||||
* [`1-ol-7`, `1.2.0-ol-7-r10` (1/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-parse-dashboard/blob/1.2.0-ol-7-r10/1/ol-7/Dockerfile)
|
||||
* [`1-debian-9`, `1.2.0-debian-9-r11`, `1`, `1.2.0`, `1.2.0-r11`, `latest` (1/Dockerfile)](https://github.com/bitnami/bitnami-docker-parse-dashboard/blob/1.2.0-debian-9-r11/1/Dockerfile)
|
||||
|
||||
Subscribe to project updates by watching the [bitnami/parse-dashboard GitHub repo](https://github.com/bitnami/bitnami-docker-parse-dashboard).
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ jobs:
|
|||
environment:
|
||||
RELEASE_SERIES_LIST: "1"
|
||||
LATEST_STABLE: "1"
|
||||
DISTRIBUTIONS_LIST: "debian-9"
|
||||
DISTRIBUTIONS_LIST: "debian-9,ol-7"
|
||||
IMAGE_NAME: parse-dashboard
|
||||
CHART_NAME: parse
|
||||
CHART_REPO: https://github.com/helm/charts
|
||||
|
|
@ -34,35 +34,17 @@ jobs:
|
|||
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
|
||||
|
||||
workflows:
|
||||
version: 2
|
||||
build-and-deploy:
|
||||
jobs:
|
||||
- build:
|
||||
filters:
|
||||
branches:
|
||||
only: /.*/
|
||||
tags:
|
||||
only: /^.*(?<!-rhel-7)-r[0-9]+$/
|
||||
|
|
|
|||
Loading…
Reference in New Issue