skip to Main Content

Dockerizing Nextjs with typescript

I'm trying to build a Docker Image of my Nextjs frontend(React) application for production and am currently stuck at typescript integration. Here's the Dockerfile. FROM node:14-alpine3.14 as deps RUN apk add --no-cache tini ENTRYPOINT ["/sbin/tini", "--"] EXPOSE 4500 RUN apk…

VIEW QUESTION
Back To Top
Search