-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDockerfile
62 lines (44 loc) · 1.56 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
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
ARG WATCHDOG_VERSION="0.1.5"
ARG R_IMAGE="rhub/r-minimal:latest"
FROM ghcr.io/openfaas/classic-watchdog:${WATCHDOG_VERSION} as watchdog
FROM ${R_IMAGE}
COPY --from=watchdog /fwatchdog /usr/bin/fwatchdog
RUN chmod +x /usr/bin/fwatchdog
# Install system requirements for index.R as needed
#ENV LIBS=''
#RUN apk update
#RUN apk add ${LIBS}
#RUN rm -rf /var/cache/apk/*
# Change options as needed in Rprofile.site
COPY Rprofile.site /usr/local/lib/R/etc/Rprofile.site
ENV _R_SHLIB_STRIP_=true
# Install basic dependencies for index.R
RUN installr -d remotes jsonlite
COPY install.R /usr/local/bin/
COPY function/DESCRIPTION .
# Istall SystemRequirements for handler.R from DESCRIPTION
RUN R -q -e 'source("/usr/local/bin/install.R"); install$sysreqs()'
RUN apk update
RUN apk add --no-cache gcc musl-dev g++ gfortran linux-headers
RUN xargs -a requirements.txt apk add
RUN apk del gcc musl-dev g++ gfortran linux-headers
RUN rm -rf /var/cache/apk/*
RUN rm requirements.txt
# Install packages (incl. remotes) for handler.R from DESCRIPTION
RUN R -q -e 'remotes::install_deps()'
# Install VersionedPackages for handler.R from DESCRIPTION
RUN R -q -e 'source("/usr/local/bin/install.R"); install$versioned()'
RUN rm -f ./DESCRIPTION
# Create a non-root user
RUN addgroup --system app \
&& adduser --system --ingroup app app
WORKDIR /home/app
COPY index.R .
COPY function .
# Switch to app user
RUN chown app:app -R /home/app
USER app
ENV fprocess="R --slave -f index.R"
EXPOSE 8080
HEALTHCHECK --interval=3s CMD [ -e /tmp/.lock ] || exit 1
CMD ["fwatchdog"]