Skip to content

Commit

Permalink
force non-interactive frontend
Browse files Browse the repository at this point in the history
  • Loading branch information
ckuhtz committed Jul 15, 2024
1 parent edc989c commit 886ce24
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions api/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ WORKDIR /hamframe

# prereq for couchbase python sdk

RUN apt-get update && \
apt-get upgrade --yes && \
apt install --yes apt-utils
RUN DEBIAN_FRONTEND="noninteractive" apt-get update && \
DEBIAN_FRONTEND="noninteractive" apt-get upgrade --yes && \
DEBIAN_FRONTEND="noninteractive" apt install --yes apt-utils



Expand All @@ -24,7 +24,7 @@ ENV PYTHONUNBUFFERED=1

WORKDIR /hamframe

RUN apt-get install --yes \
RUN DEBIAN_FRONTEND="noninteractive" apt-get install --yes \
ccache \
cmake \
g++ \
Expand Down Expand Up @@ -52,15 +52,15 @@ COPY requirements.txt .
RUN pip3 install --no-cache-dir --root-user-action ignore -r requirements.txt

# remove unneccessary stuff
RUN apt-get remove --yes \
RUN DEBIAN_FRONTEND="noninteractive" apt-get remove --yes \
ccache \
cmake \
g++ \
git \
libssl-dev \
zlib1g-dev \
&& \
apt-get autoremove --yes
DEBIAN_FRONTEND="noninteractive" apt-get autoremove --yes



Expand Down

0 comments on commit 886ce24

Please sign in to comment.