Skip to content

Commit

Permalink
Fetch buildpack images from MCR. (#2414)
Browse files Browse the repository at this point in the history
* Update build pack images for runtime

* fetch buildpack from MCR for runtime images
  • Loading branch information
kumaraksh1 authored Apr 29, 2024
1 parent e6a880c commit 2c7a232
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion images/runtime/commonbase/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ARG DEBIAN_FLAVOR
FROM buildpack-deps:${DEBIAN_FLAVOR}-curl
FROM mcr.microsoft.com/mirror/docker/library/buildpack-deps:${DEBIAN_FLAVOR}-scm
ARG IMAGES_DIR=/tmp/oryx/images
ARG BUILD_DIR=/tmp/oryx/build

Expand Down
2 changes: 1 addition & 1 deletion platforms/nodejs/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ARG DEBIAN_FLAVOR
FROM buildpack-deps:${DEBIAN_FLAVOR}
FROM mcr.microsoft.com/mirror/docker/library/buildpack-deps:${DEBIAN_FLAVOR}
ARG DEBIAN_FLAVOR
ENV DEBIAN_FLAVOR=$DEBIAN_FLAVOR

Expand Down
2 changes: 1 addition & 1 deletion platforms/php/prereqs/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ARG DEBIAN_FLAVOR
FROM buildpack-deps:${DEBIAN_FLAVOR} AS php-buildpack-prereqs
FROM mcr.microsoft.com/mirror/docker/library/buildpack-deps:${DEBIAN_FLAVOR} AS php-buildpack-prereqs
ARG DEBIAN_FLAVOR
ENV DEBIAN_FLAVOR=$DEBIAN_FLAVOR
COPY platforms/php/prereqs /php
Expand Down
2 changes: 1 addition & 1 deletion platforms/python/prereqs/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
ARG DEBIAN_FLAVOR
# DEBIAN_HACK_FLAVOR is only needed for python 3.10 or newer
ARG DEBIAN_HACK_FLAVOR
FROM buildpack-deps:${DEBIAN_HACK_FLAVOR}
FROM mcr.microsoft.com/mirror/docker/library/buildpack-deps:${DEBIAN_HACK_FLAVOR}
ARG DEBIAN_FLAVOR
ARG DEBIAN_HACK_FLAVOR
ENV DEBIAN_FLAVOR=$DEBIAN_FLAVOR
Expand Down

0 comments on commit 2c7a232

Please sign in to comment.