- Build Go binaries (gh-mrva, mrvaserver, mrvaagent) in source repos before copying to container dirs - Apply consistent v0.4.5 tagging across all containers (ghmrva, vscode, hepc, server, agent) - Update hepc to sync mrvahepc source with venv and .git exclusions - Verify deployment with docker-compose-demo.yml and bin/ma.send-request tests
39 lines
1.6 KiB
Docker
39 lines
1.6 KiB
Docker
# Runtime container - binary built on host
|
|
FROM ubuntu:24.04
|
|
ENV DEBIAN_FRONTEND=noninteractive
|
|
|
|
# Build argument for CodeQL version, defaulting to the latest release
|
|
ARG CODEQL_VERSION=latest
|
|
|
|
# Install packages
|
|
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/*
|
|
|
|
# If the version is 'latest', lsget the latest release version from GitHub, unzip the bundle into /opt, and delete the archive
|
|
RUN if [ "$CODEQL_VERSION" = "latest" ]; then \
|
|
CODEQL_VERSION=$(curl -s https://api.github.com/repos/github/codeql-cli-binaries/releases/latest | grep '"tag_name"' | sed -E 's/.*"([^"]+)".*/\1/'); \
|
|
fi && \
|
|
echo "Using CodeQL version $CODEQL_VERSION" && \
|
|
curl -L "https://github.com/github/codeql-cli-binaries/releases/download/$CODEQL_VERSION/codeql-linux64.zip" -o /tmp/codeql.zip && \
|
|
unzip /tmp/codeql.zip -d /opt && \
|
|
rm /tmp/codeql.zip && \
|
|
chmod -R +x /opt/codeql
|
|
|
|
# Set environment variables for CodeQL
|
|
ENV CODEQL_CLI_PATH=/opt/codeql/codeql
|
|
|
|
# Set environment variable for CodeQL for `codeql database analyze` support on ARM
|
|
# This env var has no functional effect on CodeQL when running on x86_64 linux
|
|
ENV CODEQL_JAVA_HOME=/usr
|
|
|
|
# Copy the host-built binary
|
|
COPY mrvaserver /usr/local/bin/mrvaserver
|
|
|
|
# Copy the binary-replacement support script to the container
|
|
COPY entrypoint.sh /usr/local/bin/entrypoint.sh
|
|
|
|
# Run the server with the default mode set to container
|
|
ENTRYPOINT ["/usr/local/bin/entrypoint.sh"]
|
|
CMD ["--mode=container"]
|