Skip to content
Merged
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: 4 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand Down Expand Up @@ -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
Expand Down