From c1173c24bec5fab6d76af5aa8fab9985fa8bc7c0 Mon Sep 17 00:00:00 2001 From: Nick Schuch Date: Fri, 26 Jun 2026 14:50:51 +1000 Subject: [PATCH] Adds aws-cli --- Dockerfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Dockerfile b/Dockerfile index a2e627f..f7dd76b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,6 +6,7 @@ LABEL org.opencontainers.image.source="https://github.com/skpr/image-opencode" \ org.opencontainers.image.description="opencode AI coding agent image" RUN apk --update --no-cache add \ + aws-cli \ bash \ ca-certificates \ curl \ @@ -97,6 +98,9 @@ RUN mkdir -p \ /home/skpr/.local/state/opencode && \ chown -R skpr:skpr /home/skpr/.local +# Ensure correct permissions for AWS credentials handling. +RUN mkdir -p /home/skpr/.aws && chown -R skpr:skpr /home/skpr/.aws + WORKDIR /data USER skpr