Skip to content

Commit

Permalink
fixing missing GPG key
Browse files Browse the repository at this point in the history
  • Loading branch information
suculent committed Mar 18, 2024
1 parent cd201c5 commit 7016fe1
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 11 deletions.
11 changes: 2 additions & 9 deletions services/broker/.circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,19 +1,12 @@
version: 2.1

orbs:
docker: circleci/docker@2.0.3
ggshield: gitguardian/ggshield@1.1.0
docker: circleci/docker@2.5.0
ggshield: gitguardian/ggshield@1.1.4

workflows:
build-and-publish:
jobs:
# - ggshield/scan:
# name: Scan using Gitguardian shield
# base_revision: <<pipeline.git.base_revision>>
# revision: <<pipeline.git.revision>>
# context:
# - gitguardian

- docker/publish:
name: Build and Publish to Docker Hub
image: thinxcloud/mosquitto
Expand Down
8 changes: 6 additions & 2 deletions services/broker/Dockerfile.test
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,13 @@ FROM thinxcloud/mosquitto

LABEL name="thinxcloud/mosquitto" version="1.5.8"

RUN RUN apt-get update --fix-missing \
&& apt-get install -y software-properties-common

# for early testing
RUN apt-get update --fix-missing \
&& apt-get install -y software-properties-common \
RUN wget http://repo.mosquitto.org/debian/mosquitto-repo.gpg.key \
&& apt-key add mosquitto-repo.gpg.key \
&& cd /etc/apt/sources.list.d/ && wget http://repo.mosquitto.org/debian/mosquitto-buster.list \
&& apt-add-repository ppa:mosquitto-dev/mosquitto-ppa \
&& apt-get update \
&& apt-get install mosquitto-clients \
Expand Down

0 comments on commit 7016fe1

Please sign in to comment.