Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 

18 lignes
354 B

  1. FROM debian:bullseye
  2. # Install tini
  3. ENV TINI_VERSION v0.19.0
  4. ADD https://github.com/krallin/tini/releases/download/${TINI_VERSION}/tini /tini
  5. RUN chmod +x /tini
  6. # Create data mount
  7. RUN mkdir -p /data
  8. RUN chown nobody:nogroup /data
  9. COPY mover.sh /mover.sh
  10. COPY entrypoint.sh /entrypoint.sh
  11. WORKDIR /tmp
  12. ENTRYPOINT [ "/tini", "--", "/entrypoint.sh" ]