Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Dockerfile to pull updated dependencies and fixed fork of pgloader. #1

Merged
merged 1 commit into from
Nov 15, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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