Skip to content
Snippets Groups Projects
Commit d0e66ba2 authored by Dmitriy Safronov's avatar Dmitriy Safronov
Browse files

Update Dockerfile

parent 16443640
Branches
No related tags found
1 merge request!3Update Dockerfile
Pipeline #40654 passed
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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment