Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

3037 embed route embed interactions through api endpoint 1 #765

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion api/aws_lambdas/submit_passport/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,13 @@ FROM --platform=linux/amd64 public.ecr.aws/lambda/python:3.12 AS base
#########################################################
FROM base AS builder

# Installing the poetry export plugin as per instructions here: https://github.com/python-poetry/poetry-plugin-export?tab=readme-ov-file#installation
# - Note: using `pipx inject poetry poetry-plugin-export` did not work in this case for unknown reasons
RUN pip install --upgrade pip && \
pip install --user pipx && \
/root/.local/bin/pipx ensurepath && \
/root/.local/bin/pipx install poetry
/root/.local/bin/pipx install poetry && \
/root/.local/bin/poetry self add poetry-plugin-export

# Tell pipenv to create venv in the current directory
ENV POETRY_VIRTUALENVS_IN_PROJECT=1
Expand Down
Loading