Skip to content

Commit

Permalink
Fix the Docker image (#146)
Browse files Browse the repository at this point in the history
  • Loading branch information
smarr authored Jul 11, 2023
2 parents 022044d + 526f296 commit 8c3573d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM postgres:15-bullseye
FROM postgres:15-bookworm
# this allows the setup to ignore all of the ubuntu OS setup
# thats not needed for this docker image (Time Zone for example)
ARG DEBIAN_FRONTEND=noninteractive
Expand All @@ -10,9 +10,9 @@ ENV TZ=UTC
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone

# Add Node.js repo
RUN curl -sL https://deb.nodesource.com/setup_19.x | bash -
RUN curl -fsSL https://deb.nodesource.com/setup_20.x | bash -

RUN sh -c 'echo "deb http://cloud.r-project.org/bin/linux/debian bullseye-cran40/" > /etc/apt/sources.list.d/r-project.list' && \
RUN sh -c 'echo "deb http://cloud.r-project.org/bin/linux/debian bookworm-cran40/" > /etc/apt/sources.list.d/r-project.list' && \
apt-key adv --keyserver keyserver.ubuntu.com --recv-key '95C0FAF38DB3CCAD0C080A7BDC78B2DDEABC47B7'


Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.rebench
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
FROM rebenchdb:latest

RUN apt-get install -y git python3-pip
RUN pip install git+https://github.com/smarr/ReBench.git
RUN pip install --break-system-packages git+https://github.com/smarr/ReBench.git

RUN echo 'echo Starting PostgreSQL Server\n\
docker-entrypoint.sh postgres &\n\
Expand Down

0 comments on commit 8c3573d

Please sign in to comment.