그 전에, 나는 아래의 docker 파일을 바탕으로 이 docker 이미지를 구축하려고 시도해 왔다.
COMMAND that triggered this error:
docker build -t developerfolio:latest .
DockerFile:
# This file is the main docker file configurations
# Official Node JS runtime as a parent image
FROM node:10.16.0-alpine
# Set the working directory to ./app
WORKDIR ./app
# Install app dependencies
# A wildcard is used to ensure both package.json AND package-lock.json are copied
# where available (npm@5+)
COPY package*.json ./
# Install any needed packages
RUN npm install
# Audit fix npm packages
RUN npm audit fix
# Bundle app source
COPY . /app
# Make port 3000 available to the world outside this container
EXPOSE 3000
# Run app.js when the container launches
CMD ["npm", "start"]
Reference
이 문제에 관하여(그 전에, 나는 아래의 docker 파일을 바탕으로 이 docker 이미지를 구축하려고 시도해 왔다.), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/alb_isma/i-was-trying-to-build-this-docker-image-based-on-the-following-dockerfile-until-this-happened-4jhl텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)