We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bf7fda3 commit acc24d6Copy full SHA for acc24d6
Dockerfile
@@ -14,7 +14,11 @@ COPY . .
14
RUN make
15
16
FROM amazonlinux:2
17
-RUN yum install -y ca-certificates
+RUN yum update -y && \
18
+ yum install -y ca-certificates && \
19
+ yum clean all && \
20
+ rm -rf /var/cache/yum
21
+
22
COPY --from=builder /go/src/github.com/aws/aws-app-mesh-controller-for-k8s/_output/bin/app-mesh-controller /bin/app-mesh-controller
23
COPY --from=builder /go/src/github.com/aws/aws-app-mesh-controller-for-k8s/ATTRIBUTION.txt /ATTRIBUTION.txt
24
0 commit comments