Skip to content
Snippets Groups Projects

Update Dockerfile

1 file
+ 7
1
Compare changes
  • Side-by-side
  • Inline
+ 7
1
ARG DOCKER_REGISTRY=registry.cyberbrain.pw
ARG DOCKER_REGISTRY=registry.cyberbrain.pw
FROM $DOCKER_REGISTRY/tools/docker/alpine:latest
 
ARG ALPINE_IMAGE=tools/docker/alpine/main
 
ARG ALPINE_TAG=latest
 
 
FROM $DOCKER_REGISTRY/$ALPINE_IMAGE:$ALPINE_TAG AS runtime
RUN set -ex && \
RUN set -ex && \
apk --no-cache add bash curl jq && \
apk --no-cache add bash curl jq && \
@@ -8,3 +12,5 @@ RUN set -ex && \
@@ -8,3 +12,5 @@ RUN set -ex && \
COPY entrypoint.sh /entrypoint.sh
COPY entrypoint.sh /entrypoint.sh
ENTRYPOINT [ "bash", "/entrypoint.sh" ]
ENTRYPOINT [ "bash", "/entrypoint.sh" ]
 
 
FROM runtime AS release
Loading