From f62f86258a39d65f31d9145ae514fab20392adf4 Mon Sep 17 00:00:00 2001 From: innovaker <66737976+innovaker@users.noreply.github.com> Date: Tue, 15 Jun 2021 19:25:13 +0100 Subject: [PATCH] feat: change parent (base) image to ubuntu Aligns with Zephyr and avoids Debian compatibility issues (cmake 3.15, libcurl4, python 3.8). PR: zmkfirmware/zmk-docker#80 --- Dockerfile | 2 +- README.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 8543c78..5eea3e2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM debian:stable-20210511-slim AS common +FROM ubuntu:focal-20210416 AS common CMD ["/bin/bash"] diff --git a/README.md b/README.md index 65345b7..9119645 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,7 @@ Lightweight Docker images for [ZMK][zmk]. For _building_ [ZMK][zmk] firmware with CI. -- FROM: **[debian][debian]:stable-slim** +- FROM: **[ubuntu][ubuntu]** - Includes: - essential [Zephyr][zephyr] dependencies (`apt-get`) - non-build dependencies are _not_ included. e.g. `pip3`, UI packages, etc. @@ -44,6 +44,6 @@ For _developing_ [ZMK][zmk] (firmware and documentation). - build and test [Zephyr][zephyr] Python requirements - other useful development packages -[debian]: https://hub.docker.com/_/debian "Debian" +[ubuntu]: https://hub.docker.com/_/ubuntu "Ubuntu" [zephyr]: https://github.com/zephyrproject-rtos/zephyr "Zephyr" [zmk]: https://github.com/zmkfirmware/zmk "ZMK"