diff options
author | Christian Breunig <christian@breunig.cc> | 2023-11-26 13:53:25 +0100 |
---|---|---|
committer | Mergify <37929162+mergify[bot]@users.noreply.github.com> | 2023-11-27 07:41:27 +0000 |
commit | 46236f50a450632ea731897c3bd3326264ca8066 (patch) | |
tree | d91dd8a7c58fdb69365b7a9fdb373c72b258a601 /docker-vyos/Dockerfile | |
parent | 23ffe017e574b0dbbd6647525f4e770c673449fc (diff) | |
download | vyos-build-46236f50a450632ea731897c3bd3326264ca8066.tar.gz vyos-build-46236f50a450632ea731897c3bd3326264ca8066.zip |
Docker: update README for VyOS inside container
(cherry picked from commit a0d3d87813b9f3f52e43227e0dc35dc9b85b5a30)
Diffstat (limited to 'docker-vyos/Dockerfile')
-rw-r--r-- | docker-vyos/Dockerfile | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/docker-vyos/Dockerfile b/docker-vyos/Dockerfile index cfe505ef..16dbb1aa 100644 --- a/docker-vyos/Dockerfile +++ b/docker-vyos/Dockerfile @@ -1,6 +1,6 @@ # syntax = docker/dockerfile:1 -# Copyright (C) 2020 VyOS maintainers and contributors +# Copyright (C) 2020-2023 VyOS maintainers and contributors # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License version 2 or later as @@ -17,10 +17,9 @@ # Define arguments for VyOS image ARG VYOS_VERSION ARG BUILD_DATE -ARG DEBIAN_VERSION # Use Debian as base layer -FROM debian:${DEBIAN_VERSION}-slim +FROM debian:bookworm-slim # Copy installer script and default build settings COPY [ "data/defaults.json", "data/live-build-config/archives/*", "docker-vyos/vyos_install_common.sh", "docker-vyos/vyos_install_stage_01.sh", "/tmp/" ] COPY [ "data/live-build-config/hooks/live/*", "/tmp/hooks/" ] |