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
Copy file name to clipboardExpand all lines: ue4docker/dockerfiles/ue4-build-prerequisites/windows/Dockerfile
+16-2
Original file line number
Diff line number
Diff line change
@@ -4,9 +4,14 @@ ARG DLLSRCIMAGE
4
4
5
5
FROM ${DLLSRCIMAGE} as dlls
6
6
7
-
FROM ${BASEIMAGE} as prerequisites
7
+
FROM ${BASEIMAGE} as deduplication
8
8
SHELL ["cmd", "/S", "/C"]
9
9
10
+
{% if not disable_labels %}
11
+
# Add a sentinel label so we can easily identify all derived images, including intermediate images
12
+
LABEL com.adamrehn.ue4-docker.sentinel="1"
13
+
{% endif %}
14
+
10
15
# Gather the system DLLs that we need from the full Windows base image
11
16
COPY --from=dlls `
12
17
C:\Windows\System32\avicap32.dll `
@@ -29,7 +34,16 @@ COPY --from=dlls `
29
34
C:\Windows\System32\opengl32.dll `
30
35
C:\Windows\System32\ResampleDMO.dll `
31
36
C:\Windows\System32\ResourcePolicyClient.dll `
32
-
C:\Windows\System32\
37
+
C:\GatheredDLLs\
38
+
39
+
# Remove any DLL files that already exist in the target base image, to avoid permission errors when attempting to overwrite existing files with a COPY directive
0 commit comments