Skip to content
Merged
Show file tree
Hide file tree
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 go/internal/sandbox/presets/base/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ FROM golang:1.25.3-bookworm AS amikad-builder

# Build from an immutable reviewed commit until the first standalone amikad
# release exists. The final image receives only the binary, not the toolchain.
ARG AMIKAD_SOURCE_REF=9dccbfd32f90834e962cb4070d920a5df3096d7d
ARG AMIKAD_SOURCE_REF=4c7b647bbeb8f3295da7ee837cd481eee2fb719d
ENV GOBIN=/out
RUN go install "github.com/gofixpoint/amika/go/cmd/amikad@${AMIKAD_SOURCE_REF}"

Expand Down Expand Up @@ -76,7 +76,7 @@ RUN mkdir -p -m 755 /etc/apt/keyrings \
# URL-encoded `@` in the release tag `amika@v<version>`. Fetch the script to a
# file rather than `curl | sh`: Docker's /bin/sh is dash (no pipefail), so a
# piped curl failure would exit 0 and silently skip the install.
ARG AMIKA_VERSION=0.13.0
ARG AMIKA_VERSION=0.14.0
ARG AMIKALOG_VERSION=0.2.0
RUN curl -fsSL "https://raw.githubusercontent.com/gofixpoint/amika/amika%40v${AMIKA_VERSION}/install.sh" -o /tmp/amika-install.sh \
&& sh /tmp/amika-install.sh --install-version "${AMIKA_VERSION}" \
Expand Down
2 changes: 1 addition & 1 deletion install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ set -eu

INSTALL_DIR="${AMIKA_INSTALL_DIR:-/usr/local/bin}"
GITHUB_REPO="gofixpoint/amika"
DEFAULT_VERSION="0.13.0"
DEFAULT_VERSION="0.14.0"
DEFAULT_AMIKALOG_VERSION="0.2.0"
DEFAULT_AMIKAD_VERSION="0.1.0"
COMPONENT="amika"
Expand Down
Loading