Skip to content

Commit

Permalink
💚 fix typo, add tier-2 image
Browse files Browse the repository at this point in the history
  • Loading branch information
AlphaNecron committed Nov 28, 2023
1 parent b79bf93 commit 3caa12a
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,10 @@ jobs:
push:
strategy:
matrix:
variant: [tier1, tier2, tier3]
variant:
- tier-1
- tier-2
#- tier-3
name: Push to Docker Hub
runs-on: ubuntu-latest
steps:
Expand Down
7 changes: 6 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,9 @@ FROM --platform=${BUILDPLATFORM} debian:bullseye AS tier-1

ARG DEBIAN_FRONTEND=noninteractive
RUN echo 'deb http://deb.debian.org/debian bookworm-backports main' >> /etc/apt/sources.list
RUN apt update && apt install -y gcc-13 python3.11 python2.7 clang-15 fpc pypy3 golang-1.21-go && rm -rf /var/lib/apt/lists/*
RUN apt update && apt install -y gcc-13 python3.11 python2.7 clang-15 fpc pypy3 && rm -rf /var/lib/apt/lists/*

FROM --platform=${BUILDPLATFORM} tier-1 AS tier-2

ARG DEBIAN_FRONTEND=noninteractive
RUN apt update && apt install -y golang-1.21-go mono-runtime openjdk-17-jdk openjdk-11-jdk openjdk-8-jdk ruby3.1 && rm -rf /var/lib/apt/lists/*

0 comments on commit 3caa12a

Please sign in to comment.