Skip to content

Commit

Permalink
no chown for COPY
Browse files Browse the repository at this point in the history
  • Loading branch information
paul-gauthier committed Jan 11, 2025
1 parent 5ada250 commit 18d1d7a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ FROM base AS aider-full

ENV AIDER_DOCKER_IMAGE=paulgauthier/aider-full

COPY --chown=appuser:appuser . /tmp/aider
COPY . /tmp/aider

# Install dependencies as root
RUN /venv/bin/python -m pip install --upgrade --no-cache-dir pip && \
Expand All @@ -54,7 +54,7 @@ FROM base AS aider

ENV AIDER_DOCKER_IMAGE=paulgauthier/aider

COPY --chown=appuser:appuser . /tmp/aider
COPY . /tmp/aider

# Install dependencies as root
RUN /venv/bin/python -m pip install --upgrade --no-cache-dir pip && \
Expand Down

0 comments on commit 18d1d7a

Please sign in to comment.