Skip to content

Commit

Permalink
Merge pull request #1 from tobz/patch-1
Browse files Browse the repository at this point in the history
  • Loading branch information
Roxedus authored Nov 15, 2023
2 parents 497f8a6 + 5619d16 commit 7969b38
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM debian:stable-slim as builder
FROM debian:bookworm-slim as builder

RUN apt-get update && \
apt-get install -y --no-install-recommends \
Expand All @@ -9,7 +9,7 @@ RUN apt-get update && \
gawk \
git \
libsqlite3-dev \
libssl1.1 \
libssl3 \
libzip-dev \
make \
openssl \
Expand All @@ -24,15 +24,15 @@ RUN apt-get update && \
rm -rf /var/lib/apt/lists/*

RUN wget -O /tmp/pgloader.tar.gz -L \
"https://github.com/dimitri/pgloader/archive/refs/heads/master.tar.gz" && \
"https://github.com/tobz/pgloader/archive/refs/heads/master.tar.gz" && \
tar xf \
/tmp/pgloader.tar.gz -C /opt/src/pgloader --strip-components=1

RUN mkdir -p /opt/src/pgloader/build/bin && \
cd /opt/src/pgloader && \
make DYNSIZE=32768 clones save

FROM debian:stable-slim
FROM debian:bookworm-slim

LABEL maintainer=Roxedus

Expand Down

0 comments on commit 7969b38

Please sign in to comment.