Skip to content
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

Update docker for ricefish #57

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from
Draft
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
8 changes: 4 additions & 4 deletions Docker_container/elisa.dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
FROM debian:buster-slim
FROM debian:bookworm-slim

ARG DEBIAN_FRONTEND=noninteractive
RUN set -x && apt-get update && apt-get upgrade -y \
&& apt-get install -y curl python \
&& apt-get install -y curl python3 \
gawk wget git-core diffstat unzip texinfo gcc-multilib \
build-essential chrpath socat libsdl1.2-dev xterm \
cpio file locales lz4 zstd procps libtinfo5
Expand Down Expand Up @@ -34,11 +34,11 @@ export AGL_TOP=\$HOME/AGL\n\
if [ ! -d \$AGL_TOP/needlefish ]; then\n\
mkdir -p \$AGL_TOP/needlefish\n\
cd \$AGL_TOP/needlefish\n\
repo init -b needlefish -u https://gerrit.automotivelinux.org/gerrit/AGL/AGL-repo\n\
repo init -b ricefish -u https://gerrit.automotivelinux.org/gerrit/AGL/AGL-repo\n\
repo sync\n\
git clone https://github.com/elisa-tech/meta-elisa.git\n\
fi" > /bin/setup_elisa.sh
RUN chmod a+x /bin/setup_elisa.sh && update-alternatives --install /usr/bin/python python /usr/bin/python3.7m 3
RUN chmod a+x /bin/setup_elisa.sh

ARG UNAME=elisa
ARG UID=1000
Expand Down