Skip to content

Commit

Permalink
move jq into base as deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
asteel-gsa authored and mogul committed Dec 3, 2024
1 parent 1f3e71e commit 05fd44d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions spiffworkflow-backend/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,9 @@ RUN apt-get update \
&& apt-get install -y -q git-core curl procps gunicorn3 default-mysql-client vim-tiny jq libpq5 \
&& rm -rf /var/lib/apt/lists/*

# install jq so we can get values from vcap
RUN pip install jq

# keep pip up to date
RUN pip install --upgrade pip
RUN pip install poetry==1.8.1
Expand All @@ -48,9 +51,6 @@ FROM base AS setup
RUN pip install poetry==1.6.1
RUN useradd _gunicorn --no-create-home --user-group

# install jq so we can get values from vcap
RUN pip install jq

# default-libmysqlclient-dev for mysqlclient lib
# libpq-dev in order to be able to poetry install postgres lib, psycopg2. See also libpq5 above in deployment image.
RUN apt-get update \
Expand Down

0 comments on commit 05fd44d

Please sign in to comment.