X-Git-Url: https://gerrit.akraino.org/r/gitweb?a=blobdiff_plain;f=docker%2Fhardware%2FDockerfile;h=19836f0bc133c7338d15fb668c92260430260aa7;hb=17bfb0b141931c48ab07dd1303216624bc053aed;hp=5b25e7686f4f6f24414d7f247426cb83c6115e99;hpb=d397f244c7a923b08df9d6488981e3d22c999c0f;p=validation.git diff --git a/docker/hardware/Dockerfile b/docker/hardware/Dockerfile index 5b25e76..19836f0 100644 --- a/docker/hardware/Dockerfile +++ b/docker/hardware/Dockerfile @@ -15,19 +15,38 @@ ############################################################################## # ref: https://docs.docker.com/develop/develop-images/dockerfile_best-practices/#use-multi-stage-builds -FROM python:3.6-alpine3.9 as build +FROM python:3.10.0b1-alpine3.13 as build # Install dependencies COPY pip-requirements.txt /wheels/requirements/pip-requirements.txt RUN apk --no-cache add --update \ + build-base \ + cairo \ + cairo-dev \ + cargo \ + freetype-dev \ gcc \ + gdk-pixbuf-dev \ + gettext \ git \ - libc-dev \ - libffi \ + jpeg-dev \ + lcms2-dev \ libffi-dev \ - make \ - openssl-dev + musl-dev \ + openjpeg-dev \ + openssl-dev \ + pango-dev \ + poppler-utils \ + postgresql-client \ + postgresql-dev \ + py-cffi \ + python3-dev \ + rust \ + tcl-dev \ + tiff-dev \ + tk-dev \ + zlib-dev # Build binaries WORKDIR /wheels @@ -35,10 +54,46 @@ RUN pip3 install wheel RUN pip3 wheel -r /wheels/requirements/pip-requirements.txt RUN git clone https://gerrit.akraino.org/r/validation /opt/akraino/validation +RUN wget -qO- https://github.com/DMTF/Redfish-Test-Framework/archive/master.zip | \ + unzip -qd /opt/akraino - +RUN wget -qO- https://github.com/DMTF/Redfish-Usecase-Checkers/archive/master.zip | \ + unzip -qd /opt/akraino - + # Copy binaries in the final contaier and install robot framework -FROM python:3.6-alpine3.9 +FROM python:3.10.0b1-alpine3.13 COPY --from=build /wheels /wheels COPY --from=build /opt/akraino/validation /opt/akraino/validation +COPY --from=build /opt/akraino/Redfish-Test-Framework-master /opt/akraino/Redfish-Test-Framework +COPY --from=build /opt/akraino/Redfish-Usecase-Checkers-master /opt/akraino/Redfish-Usecase-Checkers + +RUN apk --no-cache add --update \ + build-base \ + cairo \ + cairo-dev \ + cargo \ + curl \ + freetype-dev \ + gcc \ + gdk-pixbuf-dev \ + gettext \ + git \ + jpeg-dev \ + lcms2-dev \ + libffi-dev \ + musl-dev \ + openjpeg-dev \ + openssl-dev \ + pango-dev \ + poppler-utils \ + postgresql-client \ + postgresql-dev \ + py-cffi \ + python3-dev \ + rust \ + tcl-dev \ + tiff-dev \ + tk-dev \ + zlib-dev RUN pip3 install -r /wheels/requirements/pip-requirements.txt \ -f /wheels && \ @@ -48,6 +103,7 @@ RUN pip3 install -r /wheels/requirements/pip-requirements.txt \ # Install blueval dependencies RUN pip install -r /opt/akraino/validation/bluval/requirements.txt -# Install curl -RUN apk --no-cache add --update \ - curl +# Install Redfish dependencies +RUN pip install html-testRunner \ + -r /opt/akraino/Redfish-Usecase-Checkers/requirements.txt +