diff --git a/Dockerfile b/Dockerfile index 1b795f6e8ae0829818fef4a2a56192e5338a3053..7caeded947bef32103eab4e7890c7380724e3945 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,18 +2,16 @@ FROM alpine:3.16 ARG CI_TOKEN -RUN apk update # QEMU-Dependencies -RUN apk update && apk add qemu qemu-img qemu-system-x86_64 \ +RUN apk update; + apk add qemu qemu-img qemu-system-x86_64 \ # Install Dependencies # Install build-essentials equivalent # https://packages.ubuntu.com/jammy/build-essential gcc g++ make libc-dev \ # Install other sweb Dependencies - python3 py3-pip cmake - -RUN pip install swet==0.0.5 --extra-index-url https://gitlab-ci-token:$CI_TOKEN@gitlab.tugraz.at/api/v4/projects/21215/packages/pypi/simple - -RUN apk del py3-pip + python3 py3-pip cmake; \ + pip install swet==0.0.5 --extra-index-url https://gitlab-ci-token:$CI_TOKEN@gitlab.tugraz.at/api/v4/projects/21215/packages/pypi/simple; \ + apk del py3-pip WORKDIR /sweb