File tree Expand file tree Collapse file tree 7 files changed +8
-0
lines changed
Expand file tree Collapse file tree 7 files changed +8
-0
lines changed Original file line number Diff line number Diff line change 7070 BASE_ARG="--build-arg BASE=${{ matrix.container.base }}"
7171 fi
7272 docker build -t ${{ env.docker-registry-container-sha }} ${BASE_ARG} -f ${{ env.dockerfile }} .
73+ docker tag ${{ env.docker-registry-container-sha }} ${{ env.docker-registry-container-latest }}
7374 docker push ${{ env.docker-registry-container-sha }}
75+ docker push ${{ env.docker-registry-container-latest }}
7476 working-directory : ${{ env.docker-config-path }}
7577 if : github.event_name != 'pull_request' && env.docker-container-exists != 'true'
7678
Original file line number Diff line number Diff line change 11ARG BASE=ubuntu:bionic
2+
23FROM ${BASE} AS apt
34RUN apt-get update && \
45 DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
Original file line number Diff line number Diff line change 11ARG BASE=centos:7
2+
23FROM ${BASE} AS yum
34RUN yum install -y \
45 which \
Original file line number Diff line number Diff line change 11ARG BASE=centos:8
2+
23FROM ${BASE} AS yum
34RUN yum install -y \
45 which \
Original file line number Diff line number Diff line change 11ARG BASE=ubuntu:bionic
2+
23FROM ${BASE}
34RUN apt update && apt install -y cmake pkg-config ruby ruby-dev llvm libclang-dev libssl-dev python-pygments
45RUN gem install docurium
Original file line number Diff line number Diff line change 11ARG BASE=ubuntu:focal
2+
23FROM ${BASE} AS apt
34RUN apt-get update && \
45 DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
Original file line number Diff line number Diff line change 11ARG BASE=ubuntu:xenial
2+
23FROM ${BASE} AS apt
34RUN apt-get update && \
45 DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
You can’t perform that action at this time.
0 commit comments