-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDockerfile
66 lines (48 loc) · 1.69 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
63
64
65
66
ARG WATCHDOG_VERSION="0.8.4"
ARG R_IMAGE="rocker/r-base:latest"
FROM ghcr.io/openfaas/of-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
RUN apt-get update && apt-get install -y \
--no-install-recommends \
make \
libssl-dev \
libcurl4-gnutls-dev \
libxml2-dev \
libstdc++6 \
&& rm -rf /var/lib/apt/lists/*
# Change options as needed in Rprofile.site
COPY Rprofile.site /etc/R
ENV _R_SHLIB_STRIP_=true
# Install basic dependencies for index.R
# some packages seem to require build from source
RUN R -q -e 'install.packages(c("remotes", "Rcpp", "httpuv"))'
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 apt-get update
RUN xargs -a requirements.txt apt-get install -y --no-install-recommends
RUN rm -rf /var/lib/apt/lists/*
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="Rscript index.R"
ENV mode="http"
ENV http_upstream_url="http://127.0.0.1:5000"
HEALTHCHECK --interval=5s CMD [ -e /tmp/.lock ] || exit 1
CMD ["fwatchdog"]