so i have a simple Dockerfile
FROM node:14
WORKDIR /usr/src/app
COPY package*.json ./
RUN npm install
COPY ./app.js ./
EXPOSE 9999
CMD ["node","app.js"]
and express app and when i try to build the image the
the build command gets stuck at load metadata for docker.io/library/node:14
enter image description here
i tried searching the problem but i didn’t anyone with similar problem
New contributor
KARIM el ayachi is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.