Skip to content

Commit

Permalink
Configure git in the container so it can commit
Browse files Browse the repository at this point in the history
  • Loading branch information
dwt committed Feb 18, 2025
1 parent 1aa4388 commit becc19b
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions docker/base/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,12 @@ RUN groupadd --gid $GID zope ; useradd --system --create-home --uid $UID --gid $
USER zope
WORKDIR /home/zope/

# Configure git for user
RUN <<EOR
git config --global user.email "zms@container"
git config --global user.name "ZMS Container"
EOR

# Install uv
# COPY --from=ghcr.io/astral-sh/uv:latest /uv /bin/uv
# ENV UV_LINK_MODE=copy
Expand Down

0 comments on commit becc19b

Please sign in to comment.