Skip to content

Commit

Permalink
Do not build non-lts distros by default
Browse files Browse the repository at this point in the history
  • Loading branch information
vitex committed Oct 25, 2024
1 parent e6681be commit 07c700e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
all: bullseye bookworm trixie focal hirsute impish jammy kinetic noble
all: bullseye bookworm trixie focal jammy noble

stretch:
docker build -t vitexsoftware/debian:lts -t vitexsoftware/debian:stretch -f debian:stretch/Dockerfile debian:stretch/

buster:
docker build -t vitexsoftware/debian:oldstable -t vitexsoftware/debian:buster -f debian:buster/Dockerfile debian:buster/
docker build -t vitexsoftware/debian:buster -f debian:buster/Dockerfile debian:buster/

bullseye:
docker build -t vitexsoftware/debian:stable -t vitexsoftware/debian:bullseye -f debian:bullseye/Dockerfile debian:bullseye/
docker build -t vitexsoftware/debian:bullseye -f debian:bullseye/Dockerfile debian:bullseye/

bookworm:
docker build -t vitexsoftware/debian:testing -t vitexsoftware/debian:bookworm -f debian:bookworm/Dockerfile debian:bookworm/
docker build -t vitexsoftware/debian:bookworm -f debian:bookworm/Dockerfile debian:bookworm/

bionic:
docker build -t vitexsoftware/ubuntu:latest -t vitexsoftware/ubuntu:bionic -f ubuntu:bionic/Dockerfile ubuntu:bionic/
Expand Down
6 changes: 3 additions & 3 deletions debian:bullseye/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
FROM debian:bullseye

ENV DEBIAN_FRONTEND noninteractive
ENV LANG en_US.utf-8
ENV LC_ALL en_US.utf-8
ENV DEBIAN_FRONTEND=noninteractive
ENV LANG=en_US.utf-8
ENV LC_ALL=en_US.utf-8

RUN apt-get update ; apt-get install -y wget ; echo "deb [signed-by=/usr/share/keyrings/vitexsoftware.gpg] http://repo.vitexsoftware.cz bullseye main" | tee /etc/apt/sources.list.d/vitexsoftware.list ; wget -O /usr/share/keyrings/vitexsoftware.gpg http://repo.vitexsoftware.cz/keyring.gpg
RUN apt-get -y install locales ; echo "LC_ALL=en_US.UTF-8" >> /etc/environment ; echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen ; echo "LANG=en_US.UTF-8" > /etc/locale.conf ; locale-gen en_US.UTF-8
Expand Down

0 comments on commit 07c700e

Please sign in to comment.