[main]: normalise csv headers
Build and Push Docker Image / build (push) Successful in 1m11s

This commit is contained in:
John Gatward
2026-08-05 09:23:34 +01:00
parent 95d8175070
commit 25b8e5c250
3 changed files with 9 additions and 2 deletions
+1 -1
View File
@@ -1,4 +1,4 @@
Season,Average goals by top 3 players,Country
Season,Average_goals_by_top_3_players,Country
199920,24.333333333333332,England
200001,19.666666666666668,England
200102,23.333333333333332,England
1 Season Average goals by top 3 players Average_goals_by_top_3_players Country
2 1999–20 24.333333333333332 England
3 2000–01 19.666666666666668 England
4 2001–02 23.333333333333332 England
+1 -1
View File
@@ -1,4 +1,4 @@
Season,Gini coefficient,Average market value of clubs,Country
Season,Gini_coefficient,Average market value of clubs,Country
200405,0.360018498852386,116763999.95,England
200506,0.3442440170940171,117000000.0,England
200607,0.37966666666666665,125249999.9,England
1 Season Gini coefficient Gini_coefficient Average market value of clubs Country
2 2004–05 0.360018498852386 116763999.95 England
3 2005–06 0.3442440170940171 117000000.0 England
4 2006–07 0.37966666666666665 125249999.9 England
+7
View File
@@ -48,6 +48,13 @@ COPY . /srv/shiny-server/
# Permissions
RUN chown -R shiny:shiny /srv/shiny-server
# Fail the image build if the app cannot start in the same user context as
# Shiny Server, rather than discovering startup errors after deployment.
RUN su -s /bin/sh shiny -c "cd /srv/shiny-server && R --vanilla -e 'source(\".Rprofile\"); source(\"global.R\")'"
EXPOSE 3838
HEALTHCHECK --interval=30s --timeout=5s --start-period=90s --retries=3 \
CMD curl --fail --silent --show-error http://127.0.0.1:3838/ || exit 1
CMD ["/usr/bin/shiny-server"]