build(docker): minimize production docker image size by using ubuntu:focal

This commit is contained in:
Amruth Pillai
2022-03-07 21:43:38 +01:00
parent c738f311da
commit b0a295d8bb
15 changed files with 91 additions and 44 deletions
+11 -4
View File
@@ -1,7 +1,14 @@
{
"extends": ["../.eslintrc.json", "next/core-web-vitals"],
"ignorePatterns": [".next"],
"extends": [
"../.eslintrc.json",
"next/core-web-vitals"
],
"ignorePatterns": [
".next",
"__ENV.js"
],
"rules": {
"@next/next/no-img-element": "off"
"@next/next/no-img-element": "off",
"@next/next/no-sync-scripts": "off"
}
}
}