pull in ms (#1489)

This commit is contained in:
Lukas Gravley 2021-04-26 14:00:13 -05:00 committed by GitHub
parent d1e81b7865
commit c51dda1b4b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -32,12 +32,12 @@ FROM python:3.9-alpine as base_image
################################ ################################
# PowerShell & PSScriptAnalyzer # PowerShell & PSScriptAnalyzer
ARG PWSH_VERSION='latest' ARG PWSH_VERSION='latest'
ARG PWSH_DIRECTORY='/opt/microsoft/powershell' ARG PWSH_DIRECTORY='/usr/lib/microsoft/powershell'
ARG PSSA_VERSION='latest' ARG PSSA_VERSION='latest'
# arm-ttk # arm-ttk
ARG ARM_TTK_NAME='master.zip' ARG ARM_TTK_NAME='master.zip'
ARG ARM_TTK_URI='https://github.com/Azure/arm-ttk/archive/master.zip' ARG ARM_TTK_URI='https://github.com/Azure/arm-ttk/archive/master.zip'
ARG ARM_TTK_DIRECTORY='/opt/microsoft' ARG ARM_TTK_DIRECTORY='/usr/lib/microsoft'
# Dart Linter # Dart Linter
## stable dart sdk: https://dart.dev/get-dart#release-channels ## stable dart sdk: https://dart.dev/get-dart#release-channels
ARG DART_VERSION='2.8.4' ARG DART_VERSION='2.8.4'
@ -303,7 +303,7 @@ ARG BUILD_REVISION
ARG BUILD_VERSION ARG BUILD_VERSION
## install alpine-pkg-glibc (glibc compatibility layer package for Alpine Linux) ## install alpine-pkg-glibc (glibc compatibility layer package for Alpine Linux)
ARG GLIBC_VERSION='2.31-r0' ARG GLIBC_VERSION='2.31-r0'
ARG ARM_TTK_DIRECTORY='/opt/microsoft' ARG ARM_TTK_DIRECTORY='/usr/lib/microsoft'
######################################### #########################################
# Label the instance and set maintainer # # Label the instance and set maintainer #
@ -371,7 +371,6 @@ COPY --from=base_image /usr/share/ /usr/share/
COPY --from=base_image /usr/include/ /usr/include/ COPY --from=base_image /usr/include/ /usr/include/
COPY --from=base_image /lib/ /lib/ COPY --from=base_image /lib/ /lib/
COPY --from=base_image /bin/ /bin/ COPY --from=base_image /bin/ /bin/
COPY --from=base_image /opt/microsoft/ /opt/microsoft/
COPY --from=base_image /node_modules/ /node_modules/ COPY --from=base_image /node_modules/ /node_modules/
######################################## ########################################