Reorganized files

This commit is contained in:
2025-12-20 19:20:48 -08:00
parent ea0a34258b
commit edd3693fb6
5 changed files with 8 additions and 8 deletions

View File

@@ -25,9 +25,9 @@ RUN mkdir -p /var/www && mkdir -p /var/www/data/speed
WORKDIR /var/www WORKDIR /var/www
# Copy web assets and scripts # Copy web assets and scripts
COPY index.html /var/www/index.html COPY src/index.html /var/www/index.html
COPY run_speed_test.sh /usr/local/bin/run_speed_test.sh COPY src/run_speed_test.sh /usr/local/bin/run_speed_test.sh
COPY start.sh /usr/local/bin/start.sh COPY src/start.sh /usr/local/bin/start.sh
# Ensure scripts are executable # Ensure scripts are executable
RUN chmod +x /usr/local/bin/run_speed_test.sh /usr/local/bin/start.sh RUN chmod +x /usr/local/bin/run_speed_test.sh /usr/local/bin/start.sh