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
8 changes: 4 additions & 4 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# Build stage
FROM golang:1.25-bookworm AS builder
# Using trixie for GLIBC 2.38+ compatibility with oasis CLI pre-built binaries.
FROM golang:1.25-trixie AS builder
WORKDIR /app

ARG OASIS_CLI_VERSION=0.17.1
# ARG OASIS_CLI_BRANCH=master
ARG OASIS_CLI_VERSION=0.18.1

# Download or build oasis CLI.
RUN if [ "x${OASIS_CLI_BRANCH}" != "x" ]; then \
Expand All @@ -30,7 +30,7 @@ RUN --mount=type=cache,target=/go/pkg/mod \
go build -o rofl-app ./

# Runner.
FROM golang:1.25-bookworm AS app
FROM golang:1.25-trixie AS app

# Install minimal runtime dependencies
RUN apt-get update -qq && \
Expand Down
2 changes: 1 addition & 1 deletion worker/oasiscli/oasiscli.go
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ func (r *Runner) Run(ctx context.Context, input RunInput) (*CommandResult, error
var args []string
switch input.Command {
case CommandBuild:
args = []string{"rofl", "build"}
args = []string{"rofl", "build", "--no-container"}
case CommandPush:
args = []string{"rofl", "push", "--format", "json"}
case CommandValidate:
Expand Down