Skip to content

Commit

Permalink
Switch Dockerfile to point to our own fork
Browse files Browse the repository at this point in the history
This includes a change that changes how the groups method of syncing
names groups (to include the domain from the group's email address).
  • Loading branch information
dancorne committed Nov 6, 2023
1 parent b540937 commit 3d15a5c
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
FROM public.ecr.aws/lambda/go:1

WORKDIR ${LAMBDA_TASK_ROOT}
ARG SSOSYNC_VERSION=v2.0.2
ARG SSOSYNC_VERSION=v2.0.3-fac
ARG GITHUB_REPO_OWNER=fac


# Download SSOSync binary
RUN mkdir -p downloads && \
curl -Lo downloads/ssosync_Linux_x86_64.tar.gz https://github.com/awslabs/ssosync/releases/download/${SSOSYNC_VERSION}/ssosync_Linux_x86_64.tar.gz && \
curl -Lo downloads/ssosync_Linux_x86_64.tar.gz https://github.com/${GITHUB_REPO_OWNER}/ssosync/releases/download/${SSOSYNC_VERSION}/ssosync_Linux_x86_64.tar.gz && \
tar xzvf downloads/ssosync_Linux_x86_64.tar.gz -C downloads/ && \
mv downloads/ssosync ${LAMBDA_TASK_ROOT}/ && \
rm -rf downloads
Expand Down

0 comments on commit 3d15a5c

Please sign in to comment.