forked from kubernetes-sigs/security-profiles-operator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile.ubi
50 lines (39 loc) · 1.53 KB
/
Dockerfile.ubi
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# Copyright 2020 The Kubernetes Authors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# hash below referred to `:36` tag
FROM registry.fedoraproject.org/fedora-minimal@sha256:b676cdd0fdefe33124325082d070c39558f1966a63dfd1193681a7900707d332 AS build
USER root
WORKDIR /work
RUN microdnf install -y \
git \
glibc-static \
golang-bin \
make \
libseccomp-static
ADD . /work
RUN mkdir -p build
ARG APPARMOR_ENABLED=0
ARG BPF_ENABLED=0
RUN make
# hash below referred to latest
FROM registry.access.redhat.com/ubi8/ubi-minimal@sha256:9a9149dbba8dc5a961dfec460018c245b49da0f52e9934e1a70dd4d42f9fc5b7
ARG version
USER root
LABEL name="Security Profiles Operator" \
version=$version \
description="The Security Profiles Operator makes it easier for cluster admins to manage their seccomp, SELinux or AppArmor profiles and apply them to Kubernetes' workloads."
COPY --from=build /work/build/security-profiles-operator /usr/bin/
ENTRYPOINT ["/usr/bin/security-profiles-operator"]
USER 65535:65535
# vim: ft=dockerfile