Skip to content

Commit

Permalink
build(docker): add dockerize image (#24534)
Browse files Browse the repository at this point in the history
Co-authored-by: Aleksey Karpov <al.karpov@okko.tv>
  • Loading branch information
alekseyolg and Aleksey Karpov authored Jun 29, 2023
1 parent bf93381 commit 46159fd
Show file tree
Hide file tree
Showing 5 changed files with 30 additions and 6 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/docker_build_push.sh
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,17 @@ DOCKER_BUILDKIT=1 docker build --target dev \
--label "build_actor=${GITHUB_ACTOR}" \
.

#
# Build the dockerize image
#
DOCKER_BUILDKIT=1 docker build \
-t "${REPO_NAME}:dockerize" \
--label "sha=${SHA}" \
--label "built_at=$(date)" \
--label "build_actor=${GITHUB_ACTOR}" \
-f dockerize.Dockerfile \
.

if [ -z "${DOCKERHUB_TOKEN}" ]; then
# Skip if secrets aren't populated -- they're only visible for actions running in the repo (not on forks)
echo "Skipping Docker push"
Expand Down
13 changes: 13 additions & 0 deletions dockerize.Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
FROM alpine:latest

ARG DOCKERIZE_VERSION=v0.7.0

RUN apk update --no-cache \
&& apk add --no-cache wget openssl \
&& wget -O - https://github.com/jwilder/dockerize/releases/download/$DOCKERIZE_VERSION/dockerize-linux-amd64-$DOCKERIZE_VERSION.tar.gz | tar xzf - -C /usr/local/bin \
&& apk del wget

USER 10001

ENTRYPOINT ["dockerize"]
CMD ["--help"]
2 changes: 1 addition & 1 deletion helm/superset/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ maintainers:
- name: craig-rueda
email: craig@craigrueda.com
url: https://github.com/craig-rueda
version: 0.10.2
version: 0.10.3
dependencies:
- name: postgresql
version: 12.1.6
Expand Down
6 changes: 3 additions & 3 deletions helm/superset/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ NOTE: This file is generated by helm-docs: https://github.com/norwoodj/helm-docs

# superset

![Version: 0.10.2](https://img.shields.io/badge/Version-0.10.2-informational?style=flat-square)
![Version: 0.10.3](https://img.shields.io/badge/Version-0.10.3-informational?style=flat-square)

Apache Superset is a modern, enterprise-ready business intelligence web application

Expand Down Expand Up @@ -102,8 +102,8 @@ helm install my-superset superset/superset
| init.tolerations | list | `[]` | |
| init.topologySpreadConstraints | list | `[]` | TopologySpreadConstrains to be added to init job |
| initImage.pullPolicy | string | `"IfNotPresent"` | |
| initImage.repository | string | `"jwilder/dockerize"` | |
| initImage.tag | string | `"latest"` | |
| initImage.repository | string | `"apache/superset"` | |
| initImage.tag | string | `"dockerize"` | |
| nameOverride | string | `nil` | Provide a name to override the name of the chart |
| nodeSelector | object | `{}` | |
| postgresql | object | see `values.yaml` | Configuration values for the postgresql dependency. ref: https://github.com/kubernetes/charts/blob/master/stable/postgresql/README.md |
Expand Down
4 changes: 2 additions & 2 deletions helm/superset/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -183,8 +183,8 @@ image:
imagePullSecrets: []

initImage:
repository: jwilder/dockerize
tag: latest
repository: apache/superset
tag: dockerize
pullPolicy: IfNotPresent

service:
Expand Down

0 comments on commit 46159fd

Please sign in to comment.