-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathDockerfile
More file actions
16 lines (10 loc) · 818 Bytes
/
Dockerfile
File metadata and controls
16 lines (10 loc) · 818 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# syntax=docker/dockerfile:1.20.0@sha256:26147acbda4f14c5add9946e2fd2ed543fc402884fd75146bd342a7f6271dc1d
# check=error=true
FROM local-image/stackable-devel
ARG PRODUCT_VERSION
ARG STACKABLE_USER_UID
WORKDIR /stackable
COPY --chown=${STACKABLE_USER_UID}:0 opensearch-dashboards/dashboards-query-workbench/stackable/patches/patchable.toml /stackable/src/opensearch-dashboards/dashboards-query-workbench/stackable/patches/patchable.toml
COPY --chown=${STACKABLE_USER_UID}:0 opensearch-dashboards/dashboards-query-workbench/stackable/patches/${PRODUCT_VERSION} /stackable/src/opensearch-dashboards/dashboards-query-workbench/stackable/patches/${PRODUCT_VERSION}
USER ${STACKABLE_USER_UID}
RUN /stackable/patchable --images-repo-root=src checkout opensearch-dashboards/dashboards-query-workbench ${PRODUCT_VERSION}