Skip to content

Commit

Permalink
Drop support for Ubuntu 18.04 (#239)
Browse files Browse the repository at this point in the history
Closes #230.
  • Loading branch information
FelicianoTech authored Mar 6, 2023
1 parent 344115b commit 54b4d40
Show file tree
Hide file tree
Showing 8 changed files with 1 addition and 151 deletions.
144 changes: 0 additions & 144 deletions 18.04/Dockerfile

This file was deleted.

2 changes: 1 addition & 1 deletion GEN-CHECK
Original file line number Diff line number Diff line change
@@ -1 +1 @@
GEN_CHECK=(18.04 20.04 22.04)
GEN_CHECK=(20.04 22.04)
1 change: 0 additions & 1 deletion build-base-images.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,5 @@

docker context create cimg
docker buildx create --use cimg
docker buildx build --platform=linux/amd64,linux/arm64 --file 18.04/Dockerfile -t cimg/base:edge-18.04 .
docker buildx build --platform=linux/amd64,linux/arm64 --file 20.04/Dockerfile -t cimg/base:edge-20.04 .
docker buildx build --platform=linux/amd64,linux/arm64 --file 22.04/Dockerfile -t cimg/base:edge-22.04 -t cimg/base:edge .
1 change: 0 additions & 1 deletion build-images.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,5 @@

docker context create cimg
docker buildx create --use cimg
docker buildx build --platform=linux/amd64,linux/arm64 --file 18.04/Dockerfile -t cimg/base:18.04 -t cimg/base:18.04 .
docker buildx build --platform=linux/amd64,linux/arm64 --file 20.04/Dockerfile -t cimg/base:20.04 -t cimg/base:20.04 .
docker buildx build --platform=linux/amd64,linux/arm64 --file 22.04/Dockerfile -t cimg/base:22.04 -t cimg/base:22.04 .
1 change: 0 additions & 1 deletion build-monthly-images.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,5 @@ VERSION=$( date +%Y.%m )

echo "The 'version' is ${VERSION}"

docker buildx build --platform=linux/amd64,linux/arm64 --file 18.04/Dockerfile -t cimg/base:${VERSION}-18.04 -t cimg/base:current-18.04 .
docker buildx build --platform=linux/amd64,linux/arm64 --file 20.04/Dockerfile -t cimg/base:${VERSION}-20.04 -t cimg/base:current-20.04 .
docker buildx build --platform=linux/amd64,linux/arm64 --file 22.04/Dockerfile -t cimg/base:${VERSION}-22.04 -t cimg/base:${VERSION} -t cimg/base:current-22.04 -t cimg/base:current .
1 change: 0 additions & 1 deletion push-base-images.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,5 @@

docker context create cimg
docker buildx create --use cimg
docker buildx build --push --platform=linux/amd64,linux/arm64 --file 18.04/Dockerfile -t cimg/base:edge-18.04
docker buildx build --push --platform=linux/amd64,linux/arm64 --file 20.04/Dockerfile -t cimg/base:edge-20.04
docker buildx build --push --platform=linux/amd64,linux/arm64 --file 22.04/Dockerfile -t cimg/base:edge-22.04 -t cimg/base:edge .
1 change: 0 additions & 1 deletion push-images.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
#!/usr/bin/env bash
# Do not edit by hand; please use build scripts/templates to make changes
docker push cimg/base:18.04
docker push cimg/base:20.04
docker push cimg/base:22.04
1 change: 0 additions & 1 deletion push-monthly-images.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,5 @@ docker buildx create --use cimg

VERSION=$( date +%Y.%m )

docker buildx build --push --platform=linux/amd64,linux/arm64 --file 18.04/Dockerfile -t cimg/base:${VERSION}-18.04 -t cimg/base:current-18.04 .
docker buildx build --push --platform=linux/amd64,linux/arm64 --file 20.04/Dockerfile -t cimg/base:${VERSION}-20.04 -t cimg/base:current-20.04 .
docker buildx build --push --platform=linux/amd64,linux/arm64 --file 22.04/Dockerfile -t cimg/base:${VERSION}-22.04 -t cimg/base:${VERSION} -t cimg/base:current-22.04 -t cimg/base:current .

0 comments on commit 54b4d40

Please sign in to comment.