Metadata for the ArchiveTeam Docker Hub repositories
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.

Dockerfile 593 B

il y a 3 ans
il y a 3 ans
il y a 3 ans
il y a 3 ans
il y a 3 ans
il y a 3 ans
il y a 3 ans
il y a 3 ans
il y a 3 ans
il y a 3 ans
il y a 3 ans
il y a 3 ans
il y a 3 ans
il y a 3 ans
il y a 3 ans
123456789101112131415161718
  1. FROM atdr.meo.ws/archiveteam/grab-base
  2. RUN useradd -m warrior && echo "warrior ALL=(ALL) NOPASSWD: ALL" >> /etc/sudoers
  3. ENV PATH="/home/warrior/.local/bin:${PATH}"
  4. WORKDIR /home/warrior
  5. USER warrior
  6. RUN mkdir data projects && ln -fs /usr/local/bin/wget-lua /home/warrior/data/wget-at
  7. COPY --from=atdr.meo.ws/archiveteam/wget-lua:v1.20.3-at-gnutls /wget /home/warrior/data/wget-at-gnutls
  8. RUN git clone --depth 1 --recurse-submodules https://github.com/ArchiveTeam/warrior-code2.git
  9. COPY --chown=warrior:warrior start.py .
  10. EXPOSE 8001
  11. STOPSIGNAL SIGINT
  12. ENTRYPOINT [ "python", "start.py" ]