mirror of
https://github.com/sartography/spiff-arena.git
synced 2025-01-13 02:54:27 +00:00
add libpq5 in order to be able to use postgres at runtime (#1906)
Co-authored-by: burnettk <burnettk@users.noreply.github.com>
This commit is contained in:
parent
cc77d83b3a
commit
42a31108fe
@ -21,6 +21,7 @@ FROM base AS deployment
|
||||
# default-mysql-client for convenience accessing mysql docker container
|
||||
# vim ftw
|
||||
# jq because it is really useful, even for scenarios where people might have environment variables with json values they might need to use for configs. about 1MB.
|
||||
# libpq5 in order to be able to use postgres at runtime
|
||||
RUN apt-get update \
|
||||
&& apt-get clean -y \
|
||||
&& apt-get install -y -q git-core curl procps gunicorn3 default-mysql-client vim-tiny jq \
|
||||
@ -45,6 +46,7 @@ RUN pip install poetry==1.6.1
|
||||
RUN useradd _gunicorn --no-create-home --user-group
|
||||
|
||||
# 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 \
|
||||
&& apt-get install -y -q gcc libssl-dev libpq-dev default-libmysqlclient-dev pkg-config libffi-dev
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user