Skip to content

Commit

Permalink
saved
Browse files Browse the repository at this point in the history
  • Loading branch information
em92 committed Mar 9, 2024
1 parent e853636 commit dc6daa6
Show file tree
Hide file tree
Showing 5 changed files with 45 additions and 0 deletions.
9 changes: 9 additions & 0 deletions Dockerfile.develop.bullseye
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,19 @@ RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y \

RUN apt-get update \
&& DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
build-essential \
git \
postgresql-13 \
&& rm -rf /var/lib/apt/lists/*

RUN git clone https://github.com/eradman/ephemeralpg.git \
&& cd ephemeralpg \
&& make && make install \
&& cd .. \
&& rm -rf ephemeralpg/

RUN python3 -m pip install wdb

ENV PATH="/usr/lib/postgresql/13/bin:${PATH}"
# take out coverage report from source directory
ENV COVERAGE_FILE="/tmp/qllr.coverage"
Expand Down
9 changes: 9 additions & 0 deletions Dockerfile.develop.focal
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,19 @@ RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y \

RUN apt-get update \
&& DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
build-essential \
git \
postgresql-12 \
&& rm -rf /var/lib/apt/lists/*

RUN git clone https://github.com/eradman/ephemeralpg.git \
&& cd ephemeralpg \
&& make && make install \
&& cd .. \
&& rm -rf ephemeralpg/

RUN python3 -m pip install wdb

ENV PATH="/usr/lib/postgresql/12/bin:${PATH}"
# take out coverage report from source directory
ENV COVERAGE_FILE="/tmp/qllr.coverage"
Expand Down
9 changes: 9 additions & 0 deletions Dockerfile.develop.jammy
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,19 @@ RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y \

RUN apt-get update \
&& DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
build-essential \
git \
postgresql-14 \
&& rm -rf /var/lib/apt/lists/*

RUN git clone https://github.com/eradman/ephemeralpg.git \
&& cd ephemeralpg \
&& make && make install \
&& cd .. \
&& rm -rf ephemeralpg/

RUN python3 -m pip install wdb

ENV PATH="/usr/lib/postgresql/14/bin:${PATH}"
# take out coverage report from source directory
ENV COVERAGE_FILE="/tmp/qllr.coverage"
Expand Down
9 changes: 9 additions & 0 deletions Dockerfile.develop.noble
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,19 @@ RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y \

RUN apt-get update \
&& DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
build-essential \
git \
postgresql-16 \
&& rm -rf /var/lib/apt/lists/*

RUN git clone https://github.com/eradman/ephemeralpg.git \
&& cd ephemeralpg \
&& make && make install \
&& cd .. \
&& rm -rf ephemeralpg/

RUN python3 -m pip install wdb

ENV PATH="/usr/lib/postgresql/16/bin:${PATH}"
# take out coverage report from source directory
ENV COVERAGE_FILE="/tmp/qllr.coverage"
Expand Down
9 changes: 9 additions & 0 deletions Dockerfile.develop.trixie
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,19 @@ RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y \

RUN apt-get update \
&& DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
build-essential \
git \
postgresql-16 \
&& rm -rf /var/lib/apt/lists/*

RUN git clone https://github.com/eradman/ephemeralpg.git \
&& cd ephemeralpg \
&& make && make install \
&& cd .. \
&& rm -rf ephemeralpg/

RUN python3 -m pip install wdb

ENV PATH="/usr/lib/postgresql/16/bin:${PATH}"
# take out coverage report from source directory
ENV COVERAGE_FILE="/tmp/qllr.coverage"
Expand Down

0 comments on commit dc6daa6

Please sign in to comment.