diff --git a/Dockerfile b/Dockerfile index d0ca774..02dbeca 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,6 +11,9 @@ EXPOSE 5000 FROM base as python-deps RUN apt-get update -qq && apt-get install -y ssh git openssl bash +# Install required system dependencies including Nginx +RUN apt-get install -y libpq-dev python3-psycopg2 mariadb-client postgresql-client +RUN apt-get install -y python3-dev default-libmysqlclient-dev build-essential RUN apt-get upgrade -y openssl bash dash # require a private key to access private github repositories diff --git a/Dockerfile.worker b/Dockerfile.worker index 770c05d..738e2d0 100644 --- a/Dockerfile.worker +++ b/Dockerfile.worker @@ -4,6 +4,8 @@ FROM python:3.10-slim as base SHELL ["/bin/bash", "-c"] RUN apt-get update -qq && apt-get install -y ssh git bash +RUN apt-get install -y libpq-dev python3-psycopg2 mariadb-client postgresql-client +RUN apt-get install -y python3-dev default-libmysqlclient-dev build-essential RUN apt-get upgrade -y bash dash # require a private key to access private github repositories