You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

18 regels
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" ]