Skip to content
Merged
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
6 changes: 4 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ jobs:

- name: Install dependencies
run: |
sudo apt install -y protobuf-compiler
sudo apt-get update
sudo apt-get install -y protobuf-compiler
make -C agent setup proto

- name: Run Agent tests
Expand All @@ -54,7 +55,8 @@ jobs:

- name: Install dependencies
run: |
sudo apt install -y protobuf-compiler
sudo apt-get update
sudo apt-get install -y protobuf-compiler
make -C agent setup proto

- name: Build Agent Local Image
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/sdks-python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ jobs:

- name: Install Protobuf
run: |
sudo apt install -y protobuf-compiler
sudo apt-get update
sudo apt-get install -y protobuf-compiler

- name: Publish (Test PyPI)
id: publish-test-pypi
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/sdks-python-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@ jobs:

- name: Install Protobuf
run: |
sudo apt install -y protobuf-compiler
sudo apt-get update
sudo apt-get install -y protobuf-compiler

- name: Run Linter
run: |
Expand Down
4 changes: 2 additions & 2 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ RUN apt update && apt install -y protobuf-compiler git python3 python3-venv wget
# Install NodeJS and Snyk Broker
ENV NODE_VERSION=20
ENV FORCE_WS_RESPONSE=true
ARG SNYK_BROKER_VERSION=axon
ARG SNYK_BROKER_VERSION=v1.0.0-axon
RUN wget -q -O - https://deb.nodesource.com/setup_${NODE_VERSION}.x | bash - && apt install -y nodejs
RUN npm install --global npm@latest typescript@4.9.3
RUN git clone https://github.com/cortexapps/snyk-broker.git /tmp/snyk-broker && \
Expand Down Expand Up @@ -57,4 +57,4 @@ ENV NODE_OPTIONS=--use-openssl-ca
EXPOSE 50051

ENTRYPOINT [ "/agent/entrypoint.sh" ]
CMD [ "serve" ]
CMD [ "serve" ]
Loading