FROM node:16.1.0-alpine WORKDIR /usr/app RUN echo '*/5 * * * * /usr/app/cli/run critical > /dev/stdout' >> /etc/crontabs/root RUN echo '0 * * * * /usr/app/cli/run extended > /dev/stdout' >> /etc/crontabs/root COPY package.json . RUN yarn --no-lockfile COPY src src COPY cli cli EXPOSE 3100 ENV NODE_ENV production CMD [ "sh", "-c", "crond ; echo $(node src/whatismyip.js) siasky.net account.siasky.net >> /etc/hosts ; node --max-http-header-size=64000 src/index.js" ]