thib12

Results 7 comments of thib12

Hello, thanks for your answer ! This warning appears when I am building the image with the given Dockerfile using the `docker build .` command.

- `uname -a` `Linux d4ba25fcb683 5.14.0-163.el9.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Sep 8 13:52:29 UTC 2022 x86_64 x86_64 x86_64 GNU/Linux` - `docker --version` `Docker version 20.10.20, build 9fdeb9c` - `env` ```...

Sure, ``` micromamba info --log-level=1 ``` ``` __ __ ______ ___ ____ _____ ___ / /_ ____ _ / / / / __ `__ \/ __ `/ __ `__ \/...

If I run `uname -r`, I get `5.14.0-176.el9.x86_64` (same result inside as outside of the Docker image)

Hello, For the given Dockerfile: ``` FROM mambaorg/micromamba@sha256:efcb9c2334096f894c2ca748775f2619225515827e2b01db5ce5e90de100cb4e RUN micromamba install -y -n base -c conda-forge pandas && \ micromamba clean --all --yes RUN uname -r && echo $? ```...

Sure, @wholtz For the given Dockerfile: ``` FROM mambaorg/micromamba@sha256:efcb9c2334096f894c2ca748775f2619225515827e2b01db5ce5e90de100cb4e USER root RUN apt-get update \ && apt-get install -y strace \ && apt-get clean \ && rm -rf /var/lib/apt/lists/* ARG...