microsoft/qdk

Public

mirrored fromhttps://github.com/microsoft/qdkAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
82c5d6b94aaaf0f605c8843bb55fd035c7e40509

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

docker/linux-aarch64/Dockerfile

19lines · modepreview

# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.

ARG BASE_IMAGE
FROM --platform=linux/arm64/v8 ${BASE_IMAGE}

# install python and pip
RUN apt-get update && \
    DEBIAN_FRONTEND=noninteractive apt-get install \
    python3-minimal python3-pip python3-venv \
    --no-install-recommends -y && \
    apt-get clean

# We don't update pip here as we need to update it
# inside the virtual environment. Otherwise, we get two versions
# of pip installed, and the one outside the virtual environment
# causes problems.

ENTRYPOINT ["sh", "-c", "$*", "--"]