Skip to content

fix(docker): Bump base image #276

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Feb 13, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions tools/docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# To Do: Check if it is worth to use espressif/idf as base image (image size will be much bigger)
FROM ubuntu:22.04
FROM ubuntu:latest

# switch to root, let the entrypoint drop back to host user
USER root
Expand Down Expand Up @@ -70,7 +70,7 @@ RUN echo LIBBUILDER_CHECKOUT_REF=$LIBBUILDER_CHECKOUT_REF LIBBUILDER_CLONE_BRANC
git checkout $LIBBUILDER_CHECKOUT_REF && \
git submodule update --init --recursive; \
fi && \
pip3 install --upgrade -r $LIBBUILDER_PATH/tools/config_editor/requirements.txt
pip3 install --break-system-packages --upgrade -r $LIBBUILDER_PATH/tools/config_editor/requirements.txt

COPY entrypoint.sh $LIBBUILDER_PATH/entrypoint.sh

Expand Down
Loading