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.
18 lines
314 B
18 lines
314 B
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
|
|
|
|
|