Docker build fix for TypeScript
Issue
When building a docker image generally, we skip installing dev dependencies for production
# Skips installing dev dependencies
RUN npm ci --only=production
But when working with TypeScript you need tsc which is a dev dependecy to compile the T...
dockerbuildfix.hashnode.dev1 min read