Warframe related tools
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.

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