Hi there,
I got Doppler today and I’m trying to integrate it with my Docker system. I followed this guide.
My Dockerfile currently looks something like this (few things removed)
FROM node:latest
# Install Doppler CLI
RUN apt-get update && apt-get install -y apt-transport-https ca-certificates curl gnupg && \
curl -sLf --retry 3 --tlsv1.2 --proto "=https" 'https://packages.doppler.com/public/cli/gpg.DE2A7741A397C129.key' | apt-key add - && \
echo "deb https://packages.doppler.com/public/cli/deb/debian any-version main" | tee /etc/apt/sources.list.d/doppler-cli.list && \
apt-get update && \
apt-get -y install doppler
COPY package.json /usr/src/bot
RUN npm install
COPY . /usr/src/bot
RUN doppler --version
# Start the bot.
CMD ["doppler", "run", "--", "node index.js"]
In my Google Cloud Build, it outputs v3.45.0 for the doppler --version
so I know that the Doppler is successfully working. In addition to that, each container I have has an ENV Variable for my DOPPLER_TOKEN
. When I visit my Integrations page, I do not see Docker there and it’s prompting me to setup Docker.
Any help would be appreciated.