Skip to content

Commit

Permalink
Added a chown for sbl to Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
jcadam14 committed Jul 31, 2024
1 parent 4df03d7 commit 6e2caa4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ WORKDIR /usr/app

RUN pip install poetry

COPY poetry.lock pyproject.toml alembic.ini ./
COPY --chown=sbl:sbl poetry.lock pyproject.toml alembic.ini ./

RUN poetry config virtualenvs.create false
RUN poetry install --no-root

COPY ./src ./src
COPY ./db_revisions ./db_revisions
COPY --chown=sbl:sbl ./src ./src
COPY --chown=sbl:sbl ./db_revisions ./db_revisions

WORKDIR /usr/app/src

Expand Down

0 comments on commit 6e2caa4

Please sign in to comment.