mirror of
https://github.com/trailofbits/buttercup
synced 2026-06-21 14:11:39 +00:00
f6067005e6
* Add passing gh token * Change docker to automatically download kythe release * Update workflow
55 lines
1.9 KiB
Docker
55 lines
1.9 KiB
Docker
ARG BASE_IMAGE=ubuntu:20.04@sha256:4a45212e9518f35983a976eead0de5eecc555a2f047134e9dd2cfc589076a00d
|
|
|
|
FROM $BASE_IMAGE AS base
|
|
RUN apt-get update && apt-get install -y software-properties-common
|
|
RUN add-apt-repository ppa:deadsnakes/ppa
|
|
RUN apt-get update && apt-get install -y python3.10 curl
|
|
RUN curl -fsSL https://get.docker.com | sh
|
|
|
|
FROM base AS builder
|
|
COPY --from=ghcr.io/astral-sh/uv:0.5.20 /uv /uvx /bin/
|
|
|
|
ENV UV_LINK_MODE=copy \
|
|
UV_COMPILE_BYTECODE=1 \
|
|
UV_PYTHON_DOWNLOADS=never \
|
|
UV_PYTHON=python3.10
|
|
|
|
WORKDIR /app
|
|
|
|
RUN --mount=type=cache,target=/root/.cache/uv \
|
|
--mount=type=bind,source=common/uv.lock,target=/common/uv.lock \
|
|
--mount=type=bind,source=common/pyproject.toml,target=/common/pyproject.toml \
|
|
--mount=type=bind,source=common/README.md,target=/common/README.md \
|
|
--mount=type=bind,source=program-model/uv.lock,target=/app/uv.lock \
|
|
--mount=type=bind,source=program-model/pyproject.toml,target=/app/pyproject.toml \
|
|
--mount=type=bind,source=program-model/README.md,target=/app/README.md \
|
|
cd /app && uv sync --frozen --no-install-project --no-editable
|
|
|
|
COPY ./common /common
|
|
COPY ./program-model /app
|
|
|
|
RUN --mount=type=cache,target=/root/.cache/uv \
|
|
uv sync --frozen --no-editable
|
|
|
|
|
|
FROM base AS runtime
|
|
ARG GH_TOKEN
|
|
ARG ASSET_ID
|
|
WORKDIR /app
|
|
|
|
COPY ./program-model/scripts /app/scripts
|
|
|
|
# Authorize GH token
|
|
RUN mkdir -p /app/scripts/gzs/kythe/
|
|
RUN curl -L \
|
|
-H "Accept: application/octet-stream" \
|
|
-H "Authorization: Bearer ${GH_TOKEN}" \
|
|
-H "X-GitHub-Api-Version: 2022-11-28" \
|
|
https://api.github.com/repos/trailofbits/aixcc-kythe/releases/assets/${ASSET_ID} \
|
|
-o /app/scripts/gzs/kythe/kythe.tar.gz
|
|
RUN tar xvzf /app/scripts/gzs/kythe/kythe.tar.gz -C /app/scripts/gzs/kythe/ --strip-components=1
|
|
RUN rm /app/scripts/gzs/kythe/kythe.tar.gz
|
|
|
|
COPY --from=builder --chown=app:app /app/.venv /app/.venv
|
|
ENV PATH=/app/.venv/bin:$PATH
|