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 · modecode

1# Copyright (c) Microsoft Corporation.
2# Licensed under the MIT License.
3
4ARG BASE_IMAGE
5FROM --platform=linux/arm64/v8 ${BASE_IMAGE}
6
7# install python and pip
8RUN apt-get update && \
9 DEBIAN_FRONTEND=noninteractive apt-get install \
10 python3-minimal python3-pip python3-venv \
11 --no-install-recommends -y && \
12 apt-get clean
13
14# We don't update pip here as we need to update it
15# inside the virtual environment. Otherwise, we get two versions
16# of pip installed, and the one outside the virtual environment
17# causes problems.
18
19ENTRYPOINT ["sh", "-c", "$*", "--"]
20