-
Notifications
You must be signed in to change notification settings - Fork 1.7k
/
Dockerfile
37 lines (28 loc) · 1.1 KB
/
Dockerfile
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
# Build the manager binary
FROM --platform=$BUILDPLATFORM golang:1.18 as builder
ARG TARGETARCH
WORKDIR /workspace
# Copy the Go Modules manifests
COPY go.mod go.mod
COPY go.sum go.sum
# cache deps before building and copying source so that we don't need to re-download as much
# and so that source changes don't invalidate our downloaded layer
RUN go mod download
# Copy the go source
COPY . .
# Build
RUN GOOS=linux GOARCH=$TARGETARCH make build/ansible-operator
# Final image.
FROM quay.io/operator-framework/ansible-operator-base:master-7183146f4b2713be287ece17a3029f1fd0964c1e
ENV HOME=/opt/ansible \
USER_NAME=ansible \
USER_UID=1001
# Ensure directory permissions are properly set
RUN echo "${USER_NAME}:x:${USER_UID}:0:${USER_NAME} user:${HOME}:/sbin/nologin" >> /etc/passwd \
&& mkdir -p ${HOME}/.ansible/tmp \
&& chown -R ${USER_UID}:0 ${HOME} \
&& chmod -R ug+rwx ${HOME}
WORKDIR ${HOME}
USER ${USER_UID}
COPY --from=builder /workspace/build/ansible-operator /usr/local/bin/ansible-operator
ENTRYPOINT ["/tini", "--", "/usr/local/bin/ansible-operator", "run", "--watches-file=./watches.yaml"]