-
Notifications
You must be signed in to change notification settings - Fork 116
/
Copy pathDockerfile.ubi
67 lines (52 loc) · 2.19 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
# 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.
# go-toolset uses RH's Go fork which uses OpenSSL for FIPS-certified crypto
# if this is not desirable, pass -tags no_openssl to SPO build
# see https://access.redhat.com/documentation/en-us/red_hat_developer_tools/2018.4/html/using_go_toolset/chap-changes
# for more details
# hash below referred to latest
FROM registry.access.redhat.com/ubi8/go-toolset@sha256:8a9106cba56ffee4f0de6ecb1953aaac50460a0406d06db3db99e7d182cc1908 AS build
USER root
WORKDIR /work
RUN dnf install -y \
libseccomp-devel \
libbpf
ADD . /work
RUN mkdir -p build
# Use latest golang
RUN ARCH=$(arch | sed 's|x86_64|amd64|g' | sed 's|aarch64|arm64|g') && \
GO_VERSION=$(curl -sSfL https://go.dev/VERSION?m=text | head -n1) && \
curl -sSfL https://go.dev/dl/${GO_VERSION}.linux-${ARCH}.tar.gz | \
tar -xzf - -C /usr/local
ENV PATH="/usr/local/go/bin:$PATH"
ARG APPARMOR_ENABLED=0
ARG BPF_ENABLED=0
# OCP in FIPS mode doesn't like statically linked SPO
ARG STATIC_LINK=no
RUN make
# hash below referred to latest
FROM registry.access.redhat.com/ubi9/ubi-minimal@sha256:14f14e03d68f7fd5f2b18a13478b6b127c341b346c86b6e0b886ed2b7573b8e0
ARG version
USER root
RUN microdnf install -y \
libseccomp \
libbpf
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/
COPY --from=build /work/build/spoc /usr/bin/
ENTRYPOINT ["/usr/bin/security-profiles-operator"]
USER 65535:65535
# vim: ft=dockerfile