그 전에, 나는 아래의 docker 파일을 바탕으로 이 docker 이미지를 구축하려고 시도해 왔다.

847 단어 reactdockernode

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"]

좋은 웹페이지 즐겨찾기