Dockerfile fails
yoavnash opened this issue · 0 comments
yoavnash commented
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 .