diff options
author | Daniil Baturin <daniil@vyos.io> | 2024-09-05 15:42:15 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-05 15:42:15 +0100 |
commit | c319ca672370216f88cd9f5e65f370bfea4ee7db (patch) | |
tree | 71a85d9cd48a9ed7183cf2ec4232f4f8da3d13a6 /docker/Dockerfile | |
parent | a6a4f08d56ad4076250f8cf96d588a5e00c755bc (diff) | |
parent | 68671774f9161e502b99f9a2aeb63f9427a6f63c (diff) | |
download | vyos-build-c319ca672370216f88cd9f5e65f370bfea4ee7db.tar.gz vyos-build-c319ca672370216f88cd9f5e65f370bfea4ee7db.zip |
Merge pull request #751 from c-po/secure-boot-cleanup
T1416: T861: T3664: T3664: T2640: various cleanup commits
Diffstat (limited to 'docker/Dockerfile')
-rw-r--r-- | docker/Dockerfile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docker/Dockerfile b/docker/Dockerfile index 9bcc234f..40b2067d 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -50,7 +50,7 @@ LABEL authors="VyOS Maintainers <maintainers@vyos.io>" \ org.opencontainers.image.title="vyos-build" \ org.opencontainers.image.description="Container to build VyOS ISO" \ org.opencontainers.image.base.name="docker.io/debian/debian:bookworm" -ENV DEBIAN_FRONTEND noninteractive +ENV DEBIAN_FRONTEND=noninteractive RUN /bin/echo -e 'APT::Install-Recommends "0";\nAPT::Install-Suggests "0";' > /etc/apt/apt.conf.d/01norecommends @@ -60,9 +60,9 @@ RUN apt-get update && apt-get install -y \ locales RUN echo "en_US.UTF-8 UTF-8" > /etc/locale.gen && locale-gen -ENV LANG en_US.utf8 +ENV LANG=en_US.utf8 -ENV OCAML_VERSION 4.14.2 +ENV OCAML_VERSION=4.14.2 # Base packaged needed to build packages and their package dependencies RUN apt-get update && apt-get install -y \ |