mailcheck (6944f17)
Published 2023-12-13 01:35:43 +00:00 by orion
Installation
docker pull git.orionkindel.com/thunderstrike/mailcheck:6944f17
sha256:85832e871d8f56aa165de4d44deab7f7787768e732c09e80ad9fce9d59e0c3ff
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"] |