modified to build docker images on lima, v0.4.0

This commit is contained in:
2025-05-18 21:43:19 -07:00
parent 93510a0223
commit 7d505e4191
5 changed files with 10 additions and 15 deletions

View File

@@ -25,9 +25,7 @@ ENV DEBIAN_FRONTEND=noninteractive
ARG CODEQL_VERSION=latest
# Install packages
RUN echo 'Acquire::http::Proxy "http://127.0.0.1:3142";' \
> /etc/apt/apt.conf.d/01proxy && \
apt-get update && apt-get install --no-install-recommends --assume-yes \
RUN apt-get update && apt-get install --no-install-recommends --assume-yes \
unzip curl ca-certificates default-jdk && \
apt-get clean && rm -rf /var/lib/apt/lists/*

View File

@@ -4,7 +4,7 @@
# Build the container via
cd ~/work-gh/mrva/mrva-docker/containers/agent/
MAG_TARGET=mrva-agent:0.1.24
MAG_TARGET=mrva-agent:0.4.0
docker build --no-cache --network host -t ${MAG_TARGET} .
# Run bash in the container in standalone mode

View File

@@ -25,9 +25,7 @@ ENV DEBIAN_FRONTEND=noninteractive
ARG CODEQL_VERSION=latest
# Install packages
RUN echo 'Acquire::http::Proxy "http://127.0.0.1:3142";' \
> /etc/apt/apt.conf.d/01proxy && \
apt-get update && apt-get install --no-install-recommends --assume-yes \
RUN apt-get update && apt-get install --no-install-recommends --assume-yes \
unzip curl ca-certificates default-jdk && \
apt-get clean && rm -rf /var/lib/apt/lists/*