Skip to content

Commit

Permalink
add pg_dump and mysqldump
Browse files Browse the repository at this point in the history
  • Loading branch information
ysaito8015 committed Sep 21, 2020
1 parent 0b862c9 commit 7ea9620
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,13 @@ RUN curl -sL https://deb.nodesource.com/setup_12.x | sudo -E bash -

RUN apt-get -y install nodejs

RUN sudo sh -c 'echo "deb http://apt.postgresql.org/pub/repos/apt $(lsb_release -cs)-pgdg main" > /etc/apt/sources.list.d/pgdg.list'
RUN sudo wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | sudo apt-key add -
RUN apt-get update
RUN apt-get -y install postgresql-client-12 default-mysql-client

RUN apt-get update && apt-get -y upgrade

ARG UID=1000
ARG GID=1000

Expand Down

0 comments on commit 7ea9620

Please sign in to comment.