Warframe related tools
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

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