Skip to content

Commit 18f0fea

Browse files
committed
Use new name for serverconfig.json
Update a couple of places that still contain the name from before the file was renamed.
1 parent f49fc09 commit 18f0fea

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ WORKDIR /app
2222
# Without the chown when copying directories, wwwroot is owned by root:root.
2323
COPY --from=build --chown=node:node /app/wwwroot wwwroot
2424
COPY --from=build --chown=node:node /app/node_modules node_modules
25-
COPY --from=build /app/devserverconfig.json serverconfig.json
25+
COPY --from=build /app/serverconfig.json serverconfig.json
2626
COPY --from=build /app/index.js index.js
2727
COPY --from=build /app/package.json package.json
2828
COPY --from=build /app/version.js version.js

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@
9797
"docker-build-local": "node deploy/docker/create-docker-context.js --build --push --tag auto --local",
9898
"docker-build-prod": "node deploy/docker/create-docker-context.js --build --push --tag auto --repository=ghcr.io/terriajs",
9999
"docker-build-ci": "node deploy/docker/create-docker-context.js --build",
100-
"start": "terriajs-server --config-file devserverconfig.json",
100+
"start": "terriajs-server --config-file serverconfig.json",
101101
"gulp": "gulp",
102102
"postinstall": "echo 'Installation successful. What to do next:\\n yarn gulp dev # Starts the server on port 3001, builds TerriaMap and dependencies, and rebuilds if files change.'",
103103
"hot": "webpack-dev-server --inline --config buildprocess/webpack.config.hot.js --hot --host 0.0.0.0",

0 commit comments

Comments
 (0)