/
spaceswimmer
/
perf-source
Обзор
Документация
Войти
/
spaceswimmer
/
perf-source
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
Dockerfile
17 строк
424 B
spaceswimmer
master version 2 updated, added linting
03 мар 2026, 13:13
03 мар 2026, 13:13
f52c519
Код
Авторство
О чём код?
# Dockerfile FROM node:24-alpine WORKDIR /app # Copy webboard files into container COPY PerfSource/webboard/package.json . COPY PerfSource/webboard/build.js . COPY PerfSource/webboard/index.html . COPY PerfSource/webboard/style.css . COPY PerfSource/webboard/scripts.js . # Run the build RUN node build.js # Copy the generated WebPage.h to output directory CMD ["sh", "-c", "cp build/WebPage.h /output/"]