From f704143ec27d71a8ca0fe1bc67f86245cc74ed95 Mon Sep 17 00:00:00 2001 From: Keith Irwin Date: Thu, 28 Dec 2023 19:43:37 -0700 Subject: [PATCH] build: :bug: Fixed build apt commands --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 4ab1193..6e6f0cc 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,10 +8,10 @@ EXPOSE ${API_PORT} WORKDIR /app # Install stripe-cli -RUN apt update && apt install curl gpg +RUN apt-get update && apt-get install -y curl gpg RUN curl -s https://packages.stripe.dev/api/security/keypair/stripe-cli-gpg/public | gpg --dearmor >/usr/share/keyrings/stripe.gpg \ && echo "deb [signed-by=/usr/share/keyrings/stripe.gpg] https://packages.stripe.dev/stripe-cli-debian-local stable main" >>/etc/apt/sources.list.d/stripe.list \ - && apt update && apt install stripe + && apt-get update && apt-get install -y stripe # Install app dependencies COPY package*.json ./