Skip to content

Commit 6c609a4

Browse files
committed
Updated Compilers and base image
1 parent eb9f9d2 commit 6c609a4

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/build.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,9 @@ jobs:
3838
# Note: tags has to be all lower-case
3939
tags: |
4040
madduci/docker-linux-cpp:latest
41-
madduci/docker-linux-cpp:1.9
41+
madduci/docker-linux-cpp:1.10
4242
# build on feature branches, push only on master branch
4343
push: ${{ github.ref == 'refs/heads/master' }}
4444

4545
- name: Image digest
46-
run: echo ${{ steps.docker_build.outputs.digest }}
46+
run: echo ${{ steps.docker_build.outputs.digest }}

Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
FROM ubuntu:20.04
1+
FROM ubuntu:22.04
22

33
LABEL maintainer="Michele Adduci <adduci@tutanota.com>" \
44
license="MIT"
55

66
WORKDIR /project
77

8-
ARG DEB_COMPILERS="g++-9 g++-10 g++-11"
9-
ARG EXTRA_CLANG_COMPILERS="13 14 15"
8+
ARG DEB_COMPILERS="g++-11 g++-12"
9+
ARG EXTRA_CLANG_COMPILERS="15 16"
1010

1111
RUN echo "Installing required packages " \
1212
&& export DEBIAN_FRONTEND=noninteractive \
@@ -27,4 +27,4 @@ RUN echo "Installing C++ Compilers" \
2727
&& chmod +x /install_compilers.sh \
2828
&& sh /install_compilers.sh "${DEB_COMPILERS}" "${EXTRA_CLANG_COMPILERS}"
2929

30-
ENTRYPOINT [ "/usr/bin/g++-11" ]
30+
ENTRYPOINT [ "/usr/bin/g++-12" ]

0 commit comments

Comments
 (0)