Remove postgres dep not needed in production

This commit is contained in:
Manav Rathi
2024-09-19 17:07:40 +05:30
parent 1942935c3c
commit e695f2eccb
2 changed files with 3 additions and 15 deletions

View File

@@ -3,17 +3,6 @@ FROM ubuntu:latest
RUN apt-get update && apt-get install -y curl gnupg
RUN apt-get install -y tini
# Install pg_dump (via Postgres client)
# https://www.postgresql.org/download/linux/ubuntu/
#
# We don't need it for production backups, but this is useful for local testing.
RUN \
apt-get install -y lsb-release && \
sh -c 'echo "deb http://apt.postgresql.org/pub/repos/apt $(lsb_release -cs)-pgdg main" > /etc/apt/sources.list.d/pgdg.list' && \
curl https://www.postgresql.org/media/keys/ACCC4CF8.asc | apt-key add - && \
apt-get update && \
apt-get -y install postgresql-client-12
# Install SCW CLI
# Latest release: https://github.com/scaleway/scaleway-cli/releases/latest
RUN \

View File

@@ -18,10 +18,9 @@ EXPIRY="$(date -Iseconds --utc --date "@$EXPIRYS")"
if test -z "$SCW_RDB_INSTANCE_ID"
then
# A required SCW related environment variable hasn't been specified. This is
# expected when running the script locally for testing. Fallback to using
# pg_dump for creating the backup.
pg_dump -Fc ente_db > $BACKUP_FILE
# A required SCW related environment variable hasn't been specified.
echo "Missing SCW_RDB_INSTANCE_ID"
exit 1
else
# We need to export a backup first after creating it, before it can be
# downloaded.