mirror of
https://github.com/openziti/zrok.git
synced 2024-11-07 08:44:14 +01:00
reduce Docker image sizes
This commit is contained in:
parent
c96fba8c34
commit
8f2aa32669
@ -4,6 +4,8 @@
|
|||||||
|
|
||||||
FIX: Document unique names
|
FIX: Document unique names
|
||||||
|
|
||||||
|
FIX: reduce Docker image sizes (https://github.com/openziti/zrok/pull/783)
|
||||||
|
|
||||||
## v0.4.44
|
## v0.4.44
|
||||||
|
|
||||||
FIX: Fix for goreleaser build action to align with changed ARM64 build path.
|
FIX: Fix for goreleaser build action to align with changed ARM64 build path.
|
||||||
|
@ -18,8 +18,7 @@ ARG ZITI_CTRL_ADVERTISED_PORT
|
|||||||
ARG ZITI_PWD
|
ARG ZITI_PWD
|
||||||
|
|
||||||
# render zrok controller config.yml
|
# render zrok controller config.yml
|
||||||
COPY ./envsubst.bash ./bootstrap-controller.bash /usr/local/bin/
|
COPY --chmod=0755 ./envsubst.bash ./bootstrap-controller.bash /usr/local/bin/
|
||||||
RUN chmod 0755 /usr/local/bin/envsubst.bash /usr/local/bin/bootstrap-controller.bash
|
|
||||||
COPY ./zrok-controller-config.yml.envsubst /tmp/
|
COPY ./zrok-controller-config.yml.envsubst /tmp/
|
||||||
RUN mkdir -p /etc/zrok-controller/
|
RUN mkdir -p /etc/zrok-controller/
|
||||||
RUN envsubst.bash \
|
RUN envsubst.bash \
|
||||||
|
@ -21,8 +21,7 @@ ARG ZROK_OAUTH_GITHUB_CLIENT_ID
|
|||||||
ARG ZROK_OAUTH_GITHUB_CLIENT_SECRET
|
ARG ZROK_OAUTH_GITHUB_CLIENT_SECRET
|
||||||
|
|
||||||
# render zrok frontend config.yml
|
# render zrok frontend config.yml
|
||||||
COPY ./envsubst.bash ./bootstrap-frontend.bash /usr/local/bin/
|
COPY --chmod=0755 ./envsubst.bash ./bootstrap-frontend.bash /usr/local/bin/
|
||||||
RUN chmod 0755 /usr/local/bin/envsubst.bash /usr/local/bin/bootstrap-frontend.bash
|
|
||||||
COPY ./zrok-frontend-config.yml.envsubst /tmp/
|
COPY ./zrok-frontend-config.yml.envsubst /tmp/
|
||||||
RUN mkdir -p /etc/zrok-frontend/
|
RUN mkdir -p /etc/zrok-frontend/
|
||||||
RUN envsubst.bash \
|
RUN envsubst.bash \
|
||||||
|
@ -31,7 +31,6 @@ RUN wget -qO- https://deb.nodesource.com/setup_18.x | bash \
|
|||||||
|
|
||||||
|
|
||||||
COPY --from=golang /usr/local/go /usr/local/go
|
COPY --from=golang /usr/local/go /usr/local/go
|
||||||
# RUN chmod -R go+rX ${go_path} ${go_cache}
|
|
||||||
|
|
||||||
COPY --from=goreleaser /usr/bin/goreleaser /usr/local/bin/goreleaser
|
COPY --from=goreleaser /usr/bin/goreleaser /usr/local/bin/goreleaser
|
||||||
|
|
||||||
|
@ -24,14 +24,10 @@ RUN mkdir -p -m0755 /licenses
|
|||||||
COPY ./LICENSE /licenses/apache.txt
|
COPY ./LICENSE /licenses/apache.txt
|
||||||
|
|
||||||
RUN mkdir -p /usr/local/bin
|
RUN mkdir -p /usr/local/bin
|
||||||
COPY ${ARTIFACTS_DIR}/${TARGETARCH}/${TARGETOS}/zrok \
|
COPY --chmod=0755 ${ARTIFACTS_DIR}/${TARGETARCH}/${TARGETOS}/zrok \
|
||||||
./nfpm/zrok-enable.bash \
|
./nfpm/zrok-enable.bash \
|
||||||
./nfpm/zrok-share.bash \
|
./nfpm/zrok-share.bash \
|
||||||
/usr/local/bin/
|
/usr/local/bin/
|
||||||
RUN chmod 0755 \
|
|
||||||
/usr/local/bin/zrok \
|
|
||||||
/usr/local/bin/zrok-enable.bash \
|
|
||||||
/usr/local/bin/zrok-share.bash
|
|
||||||
|
|
||||||
USER ziggy
|
USER ziggy
|
||||||
ENTRYPOINT [ "zrok" ]
|
ENTRYPOINT [ "zrok" ]
|
||||||
|
Loading…
Reference in New Issue
Block a user