Sha256: a169ffef44f4abc420704309da555a1e5a49803810806d66642e88981480928e
Contents?: true
Size: 755 Bytes
Versions: 17
Compression:
Stored size: 755 Bytes
Contents
FROM smartcloud:latest LABEL maintainer="Timeboard <hello@timeboard.me>" # FCGI Essentials # --- IMPORTANT NOTE: This is custom built fcgiwrap package for alpine linux to account for NO_BUFFERING option. # --- Original fcgiwrap: https://github.com/gnosek/fcgiwrap # --- Custom fcgiwrap: https://github.com/notr1ch/fcgiwrap COPY fcgiwrap /root/apk-packages/fcgiwrap RUN apk add fcgiwrap --repository /root/apk-packages/fcgiwrap/packages/main --allow-untrusted && \ rm -rf /root/apk-packages RUN apk add --update coreutils && \ apk add --update util-linux && \ apk add --update git && \ apk add --update git-daemon && \ apk add --update spawn-fcgi && \ rm -rf /var/cache/apk/* CMD ["spawn-fcgi", "-n", "-p", "9000", "/usr/bin/fcgiwrap", "-f"]
Version data entries
17 entries across 17 versions & 1 rubygems