glob and timezone

This commit is contained in:
2025-08-03 10:46:24 -05:00
parent 07207f6e82
commit f78a5f2851
2 changed files with 3 additions and 2 deletions

2
Jenkinsfile vendored
View File

@@ -16,7 +16,7 @@ pipeline {
steps { steps {
sh "./scripts/docker_build_image.sh ${DISTRO}" sh "./scripts/docker_build_image.sh ${DISTRO}"
sh "./scripts/docker_save_image.sh ${DISTRO}" sh "./scripts/docker_save_image.sh ${DISTRO}"
stash includes: "gitignore/docker/${DISTRO}.tar.zst", name: "${DISTRO}-stash" stash includes: "gitignore/docker/*${DISTRO}.tar.zst", name: "${DISTRO}-stash"
} }
} }
} }

View File

@@ -70,12 +70,13 @@ docker_build_image() {
{ {
echo "FROM ${distro}" echo "FROM ${distro}"
echo 'SHELL ["/bin/bash", "-c"]' echo 'SHELL ["/bin/bash", "-c"]'
echo 'RUN ln -sf /bin/bash /bin/sh'
echo 'ENV DEBIAN_FRONTEND=noninteractive'
echo "RUN ${pkg_mgr_update} && ${pkg_mgr_upgrade}" echo "RUN ${pkg_mgr_update} && ${pkg_mgr_upgrade}"
echo "RUN ${pkg_install} ${req_pkgs}" echo "RUN ${pkg_install} ${req_pkgs}"
echo 'RUN pipx install virtualenv' echo 'RUN pipx install virtualenv'
echo 'RUN pipx ensurepath' echo 'RUN pipx ensurepath'
echo 'RUN curl https://sh.rustup.rs -sSf | bash -s -- -y' echo 'RUN curl https://sh.rustup.rs -sSf | bash -s -- -y'
echo 'RUN ln -sf /bin/bash /bin/sh'
echo 'ENV PATH="~/.cargo/bin:$PATH"' echo 'ENV PATH="~/.cargo/bin:$PATH"'
echo 'RUN rustup default stable && rustup update stable' echo 'RUN rustup default stable && rustup update stable'
echo 'RUN cargo install cargo-c' echo 'RUN cargo install cargo-c'