Sha256: 692d8110eb43e901e5288dda0da4e4f2e9a351122985f313967d4e68f58a22f4

Contents?: true

Size: 798 Bytes

Versions: 2

Compression:

Stored size: 798 Bytes

Contents

ARG SMARTMACHINE_VERSION

FROM smartmachine:$SMARTMACHINE_VERSION
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

2 entries across 2 versions & 1 rubygems

Version Path
smartmachine-0.8.0 lib/smart_machine/grids/prereceiver/Dockerfile
smartmachine-0.7.0 lib/smart_machine/grids/prereceiver/Dockerfile