Last active
July 7, 2022 20:44
-
-
Save travist/50b85e09a768a26907308507921b469b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM alpine:latest | |
MAINTAINER Form.io <[email protected]> | |
ENV USERNAME=formiouser | |
ENV UID=5000 | |
ENV GROUP=${USERNAME} | |
ENV GID=${UID} | |
RUN adduser -u ${UID} -g ${GROUP} -D ${USERNAME} &&\ | |
addgroup ${USERNAME} ${GROUP} | |
# Install the latest versions from edge | |
RUN sed -i -e 's/v[[:digit:]]\..*\//edge\//g' /etc/apk/repositories &&\ | |
apk add --upgrade \ | |
nodejs npm nghttp2 nghttp2-libs &&\ | |
apk del git wget curl &&\ | |
rm -rf /var/lib/apt/lists/* &&\ | |
rm /var/cache/apk/* &&\ | |
rm -f /etc/fstab &&\ | |
crontab -r &&\ | |
find / -name wget -delete &&\ | |
rm -fr /etc/init.d /lib/rc /etc/conf.d /etc/inittab /etc/runlevels /etc/rc.conf /etc/logrotate.d &&\ | |
rm -fr /etc/sysctl* /etc/modprobe.d /etc/modules /etc/mdev.conf /etc/acpi && \ | |
find /bin /etc /lib /sbin /usr -xdev -type f -a \( -perm +4000 -o -perm +2000 \) -delete &&\ | |
find / -xdev -type l ! -exec test -e {} \; -delete | |
COPY ./build /src | |
WORKDIR /src | |
RUN apk add libcap && setcap 'cap_net_bind_service=+ep' $(which node) | |
USER ${USERNAME} | |
EXPOSE 80 | |
CMD ["node", "formio.js", "--max_old_space_size=8192"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment