webgpu-arena / Dockerfile
ogerly
Change to docker SDK to fix config error
a1eb585
raw
history blame contribute delete
168 Bytes
FROM nginx:alpine
COPY . /usr/share/nginx/html
RUN sed -i 's/listen *80;/listen 7860;/g' /etc/nginx/conf.d/default.conf
EXPOSE 7860
CMD ["nginx", "-g", "daemon off;"]