Next.js Discord

Discord Forum

Problem with dockerising

Unanswered
Selkirk Rex posted this in #help-forum
Open in Discord
Selkirk RexOP
Hi this is my dockerfile
FROM node:18-alpine

WORKDIR /frontend

COPY package*.json ./

RUN npm install

COPY . .

RUN npm run build

RUN npm install -g serve

CMD ["serve", "-s", "build"]

EXPOSE 3000

and i get 404 The requested path couldnt be found

while hosting my website

0 Replies