Skip to content

Commit

Permalink
chore: fix app path in Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
tschaffter committed Feb 4, 2025
1 parent 4d31831 commit 4356a26
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions apps/agora/data/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ FROM python:3.11.9-slim
ARG USERNAME=app
ARG USER_UID=1000
ARG USER_GID=$USER_UID
ENV APP_DIR=/opt/app \
ENV APP_DIR=/app \
APP_USERNAME=${USERNAME}

RUN groupadd --gid "$USER_GID" "$USERNAME" \
Expand All @@ -42,10 +42,10 @@ RUN groupadd --gid "$USER_GID" "$USERNAME" \
&& rm -rf /var/lib/apt/lists/*

# Copy the runtime dependencies from the builder stage.
COPY --from=builder /app /app
COPY --from=builder ${APP_DIR} ${APP_DIR}

# Copy the application code.
COPY ./src /app/src
COPY ./src /${APP_DIR}/src

WORKDIR /
COPY docker-entrypoint.sh ./
Expand Down

0 comments on commit 4356a26

Please sign in to comment.