Skip to content

Commit

Permalink
Install pg client in osm-processor
Browse files Browse the repository at this point in the history
  • Loading branch information
Rub21 committed Oct 25, 2024
1 parent b43b2cb commit 0d9f574
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions images/osm-processor/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,22 @@ FROM debian:bookworm-slim
ENV workdir /mnt/data
WORKDIR $workdir

# Installs osmosis v0.48.3 & osmium-tool v1.15.0
# Installs osmosis v0.48.3, osmium-tool v1.15.0, and PostgreSQL client
RUN set -ex \
&& apt-get update \
&& DEBIAN_FRONTEND=noninteractive apt-get install \
-y --no-install-recommends \
&& apt-get update \
&& DEBIAN_FRONTEND=noninteractive apt-get install \
-y --no-install-recommends \
"osmosis" \
"osmium-tool" \
# Cloud provider CLIs
"awscli" \
"gsutil" \
"azure-cli" \
# PostgreSQL client
"postgresql-client" \
# Other useful packages
"rsync" \
"pyosmium" \
"tmux" \
"zsh" \
&& rm -rf /var/lib/apt/lists/*
&& rm -rf /var/lib/apt/lists/*

0 comments on commit 0d9f574

Please sign in to comment.