[bitnami/parse] Release 6.0.0-debian-11-r1 (#24344)

Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>
This commit is contained in:
Bitnami Bot
2023-02-17 18:41:39 +01:00
committed by GitHub
parent 5dc9db0035
commit 70aadf9097
3 changed files with 21 additions and 21 deletions

View File

@@ -2,11 +2,11 @@ FROM docker.io/bitnami/minideb:bullseye
ARG TARGETARCH
LABEL org.opencontainers.image.authors="https://bitnami.com/contact" \
org.opencontainers.image.description="Application packaged by Bitnami" \
LABEL org.opencontainers.image.base.name="docker.io/bitnami/minideb:bullseye" \
org.opencontainers.image.created="2023-02-17T17:15:29Z" \
org.opencontainers.image.description="Application packaged by VMware, Inc" \
org.opencontainers.image.licenses="Apache-2.0" \
org.opencontainers.image.ref.name="6.0.0-debian-11-r0" \
org.opencontainers.image.source="https://github.com/bitnami/containers/tree/main/bitnami/parse" \
org.opencontainers.image.ref.name="6.0.0-debian-11-r1" \
org.opencontainers.image.title="parse" \
org.opencontainers.image.vendor="VMware, Inc." \
org.opencontainers.image.version="6.0.0"
@@ -22,11 +22,11 @@ SHELL ["/bin/bash", "-o", "pipefail", "-c"]
RUN install_packages ca-certificates curl jq libbz2-1.0 libcom-err2 libcrypt1 libffi7 libgcc-s1 libgssapi-krb5-2 libk5crypto3 libkeyutils1 libkrb5-3 libkrb5support0 liblzma5 libncursesw6 libnsl2 libreadline8 libsqlite3-0 libssl1.1 libstdc++6 libtinfo6 libtirpc3 procps zlib1g
RUN mkdir -p /tmp/bitnami/pkg/cache/ && cd /tmp/bitnami/pkg/cache/ && \
COMPONENTS=( \
"python-3.8.16-3-linux-${OS_ARCH}-debian-11" \
"node-16.19.0-1-linux-${OS_ARCH}-debian-11" \
"mongodb-shell-1.7.1-0-linux-${OS_ARCH}-debian-11" \
"parse-6.0.0-0-linux-${OS_ARCH}-debian-11" \
"gosu-1.16.0-1-linux-${OS_ARCH}-debian-11" \
"python-3.8.16-4-linux-${OS_ARCH}-debian-11" \
"node-16.19.1-0-linux-${OS_ARCH}-debian-11" \
"mongodb-shell-1.7.1-1-linux-${OS_ARCH}-debian-11" \
"parse-6.0.0-1-linux-${OS_ARCH}-debian-11" \
"gosu-1.16.0-2-linux-${OS_ARCH}-debian-11" \
) && \
for COMPONENT in "${COMPONENTS[@]}"; do \
if [ ! -f "${COMPONENT}.tar.gz" ]; then \

View File

@@ -1,37 +1,37 @@
{
"gosu": {
"arch": "amd64",
"digest": "9ab9654690d90d3c49ff66fb1eb286487e318adc899d036bc45922f6b176865b",
"digest": "f6056076afb745fd7d9d87d20f71e7248d63330352cf5ae0be2130b7f44a8cfa",
"distro": "debian-11",
"type": "NAMI",
"version": "1.16.0-1"
"version": "1.16.0-2"
},
"mongodb-shell": {
"arch": "amd64",
"digest": "a81cba6a89ce81f1d8c840a754c26cfbc110bf8c5c462d41b22544876816c20d",
"digest": "92888a85fef7b16c5990c1313c95f8756aa2216ddd48c417104912c49795d4c2",
"distro": "debian-11",
"type": "NAMI",
"version": "1.7.1-0"
"version": "1.7.1-1"
},
"node": {
"arch": "amd64",
"digest": "c584387a554d2de02d1be7f8bf6ee003f2648f4fbbd8cee66dc04e9cb0ae1d45",
"digest": "a4b386465dc2a4a4dd7e58b7184f0ce9919cfd2cbd2289b5f7bab80a3f6fc7be",
"distro": "debian-11",
"type": "NAMI",
"version": "16.19.0-1"
"version": "16.19.1-0"
},
"parse": {
"arch": "amd64",
"digest": "86f6b9d83e16918c3a33e8ce8d447d795af33b579e0f1cc9b44b1272d39eba35",
"digest": "e30aad9c564ce566cc6569b865dc73013a3d3ca317e3027d0ebc91ba16d5a38e",
"distro": "debian-11",
"type": "NAMI",
"version": "6.0.0-0"
"version": "6.0.0-1"
},
"python": {
"arch": "amd64",
"digest": "fbe5cb1a19ecccf616d2e97c130e7dae06537494bdcc3ead8b9e98054fb4a6f9",
"digest": "100f7d546cffcd034bcced74a0fa87b5771c4109945a6ae616b53d0ec13d7881",
"distro": "debian-11",
"type": "NAMI",
"version": "3.8.16-3"
"version": "3.8.16-4"
}
}

View File

@@ -249,8 +249,8 @@ You can use Cloud Code to run a piece of code in your Parse Server instead of th
* Create a directory on your host machine and put your Cloud functions on it. In the example below, a simple "Hello world!" function is used:
```console
mkdir ~/cloud
cat > ~/cloud/main.js <<'EOF'
$ mkdir ~/cloud
$ cat > ~/cloud/main.js <<'EOF'
Parse.Cloud.define("sayHelloWorld", function(request, response) {
return "Hello world!";
});