| 123456789101112131415161718192021222324252627 | FROM node:8.1-alpineENV REDIS_HOST=0.0.0.0ENV STORAGE_TYPE=file ENV UID=791 GID=791EXPOSE 7777COPY run.sh /usr/local/bin/run.shCOPY about.md /hastebin/about.mdCOPY haste.py /hastebin/haste.pyWORKDIR /hastebinRUN set -xe \    && apk add -U --no-cache --virtual .build-deps zip unzip ca-certificates openssl \    && apk add -U --no-cache su-exec busybox \    && wget https://github.com/seejohnrun/haste-server/archive/master.zip \    && unzip master.zip \    && find haste-server-master -mindepth 1 -maxdepth 1 -print0 | xargs -0 -i mv {} /hastebin \    && rmdir haste-server-master \    && rm master.zip \    && npm install \    && chmod +x -R /usr/local/bin/run.sh \    && apk del .build-depsCMD ["run.sh"]
 |