You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Something must have changed in the mcr.microsoft.com/windows/nanoserver:1909 image in particular as it's been working for my custom images workflow for quite a while and now it's not.
Here is minimal reproducible example Dockerfile
ARG BASE_IMAGE
ARG BASE_IMAGE_TAG
FROM mcr.microsoft.com/windows/nanoserver:${BASE_IMAGE_TAG} AS build
LABEL stage=build
WORKDIR /Temp
RUN echo Test > test.txt
FROM mcr.microsoft.com/windows:${BASE_IMAGE_TAG} AS windows
LABEL stage=build
FROM ${BASE_IMAGE}:${BASE_IMAGE_TAG}
WORKDIR /
COPY --from=build /Temp/test.txt /
COPY --from=windows /Windows/System32/opengl32.dll /Windows/System32/
and runner that may be extended with more image tags:
Thanks for raising this issue on 1909 images. However, that image is now out of support as you can check on: https://docs.microsoft.com/en-us/virtualization/windowscontainers/deploy-containers/base-image-lifecycle. We recommend customers use the 2004 or 20H2 images at this point so they can get support on those images. From the information above, I see that the build process succeeded on 20H2.
Please let us know if you have any other questions on this.
@vrapolinario No, I don't see the error on 1809. I was just double-checking I've got it right the 'skipping' of 1909 and that the situation is this indeed:
Something must have changed in the
mcr.microsoft.com/windows/nanoserver:1909
image in particular as it's been working for my custom images workflow for quite a while and now it's not.Here is minimal reproducible example
Dockerfile
and runner that may be extended with more image tags:
Build using base
1909
tag does NOT succeed:Possibly, it's related to microsoft/hcsshim#835
Build using
1809
tag does succeed:Build using
20H2
tag does succeed:Environment
The text was updated successfully, but these errors were encountered: