-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
29 lines (22 loc) · 996 Bytes
/
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
# s2i-ocaml-runner
FROM alpine
# TODO: Put the maintainer name in the image metadata
MAINTAINER Richard Degenne <richdeg2@gmail.com>
# TODO: Rename the builder environment variable to inform users about application you provide them
# ENV BUILDER_VERSION 1.0
# TODO: Set labels used in OpenShift to describe the builder image
#LABEL io.k8s.description="Platform for building xyz" \
# io.k8s.display-name="builder x.y.z" \
# io.openshift.expose-services="8080:http" \
# io.openshift.tags="builder,x.y.z,etc."
LABEL io.openshift.s2i.scripts-url=image:///usr/libexec/s2i
RUN adduser -D default
USER default
WORKDIR /home/default
# TODO: Copy the S2I scripts to /usr/libexec/s2i, since openshift/base-centos7 image
# sets io.openshift.s2i.scripts-url label that way, or update that label
COPY ./s2i/bin/ /usr/libexec/s2i
# TODO: Set the default port for applications built using this image
# EXPOSE 8080
# TODO: Set the default CMD for the image
# CMD ["/usr/libexec/s2i/usage"]