Commit c2fc3e59 authored by Дмитрий Сафронов's avatar Дмитрий Сафронов
Browse files

Merge branch 'zimniy-main-patch-93431' into 'main'

Update Dockerfile

See merge request !3
parents 16443640 d0e66ba2
Loading
Loading
Loading
Loading
Loading
+7 −1
Original line number Diff line number Diff line
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 && \
    apk --no-cache add bash curl jq && \
@@ -8,3 +12,5 @@ RUN set -ex && \
COPY entrypoint.sh /entrypoint.sh

ENTRYPOINT [ "bash", "/entrypoint.sh" ]

FROM runtime AS release