Skip to content

Commit

Permalink
Updated a bit.
Browse files Browse the repository at this point in the history
  • Loading branch information
mariacarmina committed Oct 5, 2023
1 parent cc331b9 commit a228c88
Showing 1 changed file with 9 additions and 10 deletions.
19 changes: 9 additions & 10 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,20 +6,19 @@ FROM python:3.8-slim-buster
LABEL maintainer="Ocean Protocol <[email protected]>"

ARG VERSION
RUN apt-get update \
&& apt-get upgrade -y \
&& apt-get install --no-install-recommends -y \
build-essential \
gcc \
gettext-base \
&& rm -rf /var/lib/apt/lists/*
RUN apt-get update && \
apt-get install --no-install-recommends -y \
build-essential \
gcc \
gettext-base && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*

COPY . /aquarius
WORKDIR /aquarius

RUN python3.8 -m pip install setuptools \
wheel \
&& python3.8 -m pip install .
RUN python3.8 -m pip install --no-cache-dir setuptools wheel && \
python3.8 -m pip install --no-cache-dir .

ENV DB_MODULE='elasticsearch'
ENV DB_HOSTNAME='localhost'
Expand Down

0 comments on commit a228c88

Please sign in to comment.