FROM alpine:latest as build RUN apk add --no-cache bash wget jq WORKDIR /src RUN wget https://steamforge.net/files/quakejs/get_assets.sh RUN bash get_assets.sh FROM jerryaldrichiii/lighttpd:1.4.64-r0 EXPOSE 8080 COPY cors.conf /etc/lighttpd/conf.d/cors.conf COPY --from=build /src/assets /srv/html/assets