mailcheck (acf2fb6)
Published 2023-12-13 01:38:17 +00:00 by orion
Installation
docker pull git.orionkindel.com/thunderstrike/mailcheck:acf2fb6
sha256:913151484aec421e1a18aa94240f894aa7d9930a243e5a9b6f412d0c9ac9800e
Image Layers
ADD file:cc1376ecb3d9e93e4160573c110da753ffeb2efe2223351f1fbf483d89f1a756 in / |
CMD ["bash"] |
RUN /bin/sh -c apt-get update -y && apt-get upgrade -y # buildkit |
RUN /bin/sh -c apt-get install -y git # buildkit |
RUN /bin/sh -c apt-get install -y curl # buildkit |
RUN /bin/sh -c git clone https://github.com/asdf-vm/asdf.git /root/.asdf --branch v0.13.1 # buildkit |
RUN /bin/sh -c echo "source /root/.asdf/asdf.sh" >> /root/.bashrc && echo "source /root/.asdf/completions/asdf.bash" >> /root/.bashrc && chsh root -s /bin/bash # buildkit |
SHELL [/bin/bash -lc] |
RUN /bin/bash -lc echo -n "bun purescript spago python rust" | xargs -d " " -I{} asdf plugin add {} # buildkit |
RUN /bin/bash -lc apt-get install -y tini # buildkit |
ENTRYPOINT ["/usr/bin/tini" "--"] |
RUN /bin/bash -lc apt-get install -y build-essential # buildkit |
RUN /bin/bash -lc apt-get install -y zlib1g zlib1g-dev # buildkit |
RUN /bin/bash -lc apt-get install -y bzip2 libncurses-dev ncurses-bin libffi-dev readline-common openssl libssl-dev # buildkit |
RUN /bin/bash -lc apt-get update -y && apt-get install -y unzip # buildkit |
RUN /bin/bash -lc asdf plugin add nodejs # buildkit |
RUN /bin/bash -lc mkdir /app # buildkit |
WORKDIR /app |
COPY ./.tool-versions .tool-versions # buildkit |
RUN /bin/bash -lc asdf install # buildkit |
COPY ./package.json package.json # buildkit |
COPY ./bun.lockb bun.lockb # buildkit |
RUN /bin/bash -lc bun install # buildkit |
RUN /bin/bash -lc npm i -g spago@next # buildkit |
COPY . . # buildkit |
RUN /bin/bash -lc spago build # buildkit |
CMD ["/bin/bash" "-lc" "node index.js"] |