diff --git a/images/taginfo/Dockerfile b/images/taginfo/Dockerfile index bd971589..0d46b273 100644 --- a/images/taginfo/Dockerfile +++ b/images/taginfo/Dockerfile @@ -1,33 +1,26 @@ FROM ruby:2.4 ENV workdir /apps WORKDIR $workdir + +# Update and install only necessary packages RUN apt-get update && apt-get install -y \ curl \ + wget \ sqlite3 \ - sqlite3-pcre \ - ruby-passenger \ - libapache2-mod-passenger \ git \ cmake \ libbz2-dev \ libexpat1-dev \ libgd-dev \ libicu-dev \ - libosmium2-dev \ - libprotozero-dev \ - libsqlite3-dev \ make \ zlib1g-dev \ - jq \ ca-certificates \ - osmium-tool \ - pyosmium \ - rsync \ - tmux \ - zsh \ - awscli \ + python3-pip \ && rm -rf /var/lib/apt/lists/* +RUN pip3 install awscli + # Clone and setup taginfo-tools RUN git clone https://github.com/taginfo/taginfo-tools.git $workdir/taginfo-tools && \ cd $workdir/taginfo-tools && \