Skip to content
Snippets Groups Projects
Commit 9459c085 authored by Bruno Michel's avatar Bruno Michel
Browse files

Fix some warnings when building the docker dev image

parent 9dab5f9f
No related branches found
No related tags found
No related merge requests found
...@@ -10,6 +10,8 @@ ENV COUCHDB_VERSION 2.0.0 ...@@ -10,6 +10,8 @@ ENV COUCHDB_VERSION 2.0.0
ENV COUCHDB_SRC_URL https://dist.apache.org/repos/dist/release/couchdb/source/$COUCHDB_VERSION/apache-couchdb-$COUCHDB_VERSION.tar.gz ENV COUCHDB_SRC_URL https://dist.apache.org/repos/dist/release/couchdb/source/$COUCHDB_VERSION/apache-couchdb-$COUCHDB_VERSION.tar.gz
ENV COUCHDB_SRC_SHA256 ccaf3ce9cb06c50a73e091696e557e2a57c5ba02c5b299e1ac2f5b959ee96eca ENV COUCHDB_SRC_SHA256 ccaf3ce9cb06c50a73e091696e557e2a57c5ba02c5b299e1ac2f5b959ee96eca
ARG DEBIAN_FRONTEND=noninteractive
RUN apt-get update && apt-get install -y --no-install-recommends \ RUN apt-get update && apt-get install -y --no-install-recommends \
build-essential \ build-essential \
ca-certificates \ ca-certificates \
...@@ -33,6 +35,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \ ...@@ -33,6 +35,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
&& ./configure --disable-docs \ && ./configure --disable-docs \
&& make release \ && make release \
&& mv ./rel/couchdb /usr/local \ && mv ./rel/couchdb /usr/local \
&& cd / \
&& rm -rf /usr/src/couchdb \ && rm -rf /usr/src/couchdb \
# Cleanup # Cleanup
&& apt-get purge -y \ && apt-get purge -y \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment