Warframe related tools
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

Dockerfile 574B

123456789101112131415161718
  1. # Clone the warframe-items repo so we can copy the JSON files
  2. FROM debian:stretch as items
  3. RUN apt-get -qq update \
  4. && DEBIAN_FRONTEND=noninteractive apt-get -qq install -y --no-install-recommends git ca-certificates \
  5. && rm -rf /var/lib/apt/lists/*
  6. RUN git clone --depth 1 https://github.com/WFCD/warframe-items.git /tmp/warframe-items
  7. # Add our HTML and the JSON from warframe-items to nginx's default directory
  8. FROM nginx
  9. RUN rm -rf /usr/share/nginx/html
  10. COPY html /usr/share/nginx/html
  11. COPY --from=items /tmp/warframe-items/data/json /usr/share/nginx/html/data