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

sockjs_client_wrapper consumer testing #392

Draft
wants to merge 7 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
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
11 changes: 11 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,15 @@
FROM drydock-prod.workiva.net/workiva/dart2_base_image:1

ARG GIT_SSH_KEY
ARG KNOWN_HOSTS_CONTENT


RUN mkdir /root/.ssh
RUN echo "$KNOWN_HOSTS_CONTENT" > "/root/.ssh/known_hosts"
RUN chmod 700 /root/.ssh/
RUN umask 0077 && echo "$GIT_SSH_KEY" >/root/.ssh/id_rsa
RUN eval "$(ssh-agent -s)" && ssh-add /root/.ssh/id_rsa

WORKDIR /build/
ADD . /build/
RUN dart pub get
Expand Down
6 changes: 6 additions & 0 deletions pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,3 +33,9 @@ dependency_validator:
- example/**
ignore:
- mockito

dependency_overrides:
sockjs_client_wrapper:
git:
url: [email protected]:Workiva/sockjs_client_wrapper.git
ref: null_safety