Skip to content

Commit

Permalink
Merge branch 'main' into feature/63-build-and-publish-images
Browse files Browse the repository at this point in the history
  • Loading branch information
thetoolsmith committed Jan 6, 2025
2 parents d11e910 + fae5379 commit 4f6b921
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,18 @@ FROM ghcr.io/cfpb/regtech/sbl/python-alpine:3.12

ENV UVICORN_LOG_LEVEL=info

WORKDIR /usr/app/src
WORKDIR /usr/app

RUN pip install poetry

COPY --chown=sbl:sbl poetry.lock pyproject.toml log-config.yml ./
COPY --chown=sbl:sbl poetry.lock pyproject.toml README.md ./

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

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

COPY --chown=sbl:sbl src/ ./
WORKDIR /usr/app/src

EXPOSE 8765

Expand Down
File renamed without changes.

0 comments on commit 4f6b921

Please sign in to comment.