File tree 7 files changed +8
-0
lines changed
7 files changed +8
-0
lines changed Original file line number Diff line number Diff line change 70
70
BASE_ARG="--build-arg BASE=${{ matrix.container.base }}"
71
71
fi
72
72
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 }}
73
74
docker push ${{ env.docker-registry-container-sha }}
75
+ docker push ${{ env.docker-registry-container-latest }}
74
76
working-directory : ${{ env.docker-config-path }}
75
77
if : github.event_name != 'pull_request' && env.docker-container-exists != 'true'
76
78
Original file line number Diff line number Diff line change 1
1
ARG BASE=ubuntu:bionic
2
+
2
3
FROM ${BASE} AS apt
3
4
RUN apt-get update && \
4
5
DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
Original file line number Diff line number Diff line change 1
1
ARG BASE=centos:7
2
+
2
3
FROM ${BASE} AS yum
3
4
RUN yum install -y \
4
5
which \
Original file line number Diff line number Diff line change 1
1
ARG BASE=centos:8
2
+
2
3
FROM ${BASE} AS yum
3
4
RUN yum install -y \
4
5
which \
Original file line number Diff line number Diff line change 1
1
ARG BASE=ubuntu:bionic
2
+
2
3
FROM ${BASE}
3
4
RUN apt update && apt install -y cmake pkg-config ruby ruby-dev llvm libclang-dev libssl-dev python-pygments
4
5
RUN gem install docurium
Original file line number Diff line number Diff line change 1
1
ARG BASE=ubuntu:focal
2
+
2
3
FROM ${BASE} AS apt
3
4
RUN apt-get update && \
4
5
DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
Original file line number Diff line number Diff line change 1
1
ARG BASE=ubuntu:xenial
2
+
2
3
FROM ${BASE} AS apt
3
4
RUN apt-get update && \
4
5
DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
You can’t perform that action at this time.
0 commit comments