Skip to content

Commit

Permalink
Merge branch 'main' into fix-algo-credentials
Browse files Browse the repository at this point in the history
  • Loading branch information
mariacarmina committed Oct 6, 2023
2 parents 276a4bb + 75e48ec commit bd7bf6b
Showing 1 changed file with 10 additions and 11 deletions.
21 changes: 10 additions & 11 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,26 +2,25 @@
## Copyright 2023 Ocean Protocol Foundation
## SPDX-License-Identifier: Apache-2.0
##
FROM ubuntu:18.04
FROM python:3.8-slim-buster
LABEL maintainer="Ocean Protocol <[email protected]>"

ARG VERSION

RUN apt-get update && \
apt-get install --no-install-recommends -y \
gcc \
python3.8 \
python3-pip \
python3.8-dev \
gettext-base
apt-get install --no-install-recommends -y \
build-essential \
gcc \
gettext-base && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*

COPY . /ocean-provider
WORKDIR /ocean-provider

RUN python3.8 -m pip install --upgrade pip
RUN python3.8 -m pip install setuptools
RUN python3.8 -m pip install wheel
RUN python3.8 -m pip install .
# Install dependencies in a virtual environment
RUN python3.8 -m pip install --no-cache-dir setuptools wheel && \
python3.8 -m pip install --no-cache-dir .

ENV NETWORK_URL='http://127.0.0.1:8545'

Expand Down

0 comments on commit bd7bf6b

Please sign in to comment.