simphony / simphony-osp

A framework that aims to achieve interoperability between software such as simulation engines, databases and data repositories using a knowledge graph as the common language.
https://simphony.readthedocs.io
Other
16 stars 12 forks source link

Dockerfile fails #720

Closed yoavnash closed 2 years ago

yoavnash commented 2 years ago

Running the Dockerfile failed with multiple errors Changing the base image to python:3.8 solved it.

Dockerfile:

FROM python:3.8
LABEL maintainer="pablo.de.andres@iwm.fraunhofer.de"

RUN apt-get update
RUN python -m pip install --upgrade pip

WORKDIR /simphony/osp-core
ADD . .
RUN pip install .

Related to #717 and #718