forked from abner/for-legacy-web
feat: drastically shrink the docker image
Right now the generated docker container contains a copy of the development environment used to compile the revite interface. This PR loses about 440MB compressed, or around 800MB uncompressed from the final image size. node in the final image has been bumped from 16 to 24, sirv-cli, and the dependencies for inject.js have been updated
This commit is contained in:
16
docker/package.json
Normal file
16
docker/package.json
Normal file
@@ -0,0 +1,16 @@
|
||||
{
|
||||
"name": "inject-and-sirv",
|
||||
"version": "0.0.1",
|
||||
"scripts": {
|
||||
"start:inject": "node scripts/inject.js && sirv dist_injected --port 5000 --cors --single --host"
|
||||
},
|
||||
"private": true,
|
||||
"dependencies": {
|
||||
"fs-extra": "^11.3.0",
|
||||
"klaw": "^4.1.0",
|
||||
"sirv-cli": "^3.0.1"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=18"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user