A Linux administrator needs to expose port 9000 for a container to listen during runtime. The Linux administrator creates a Dockerfile with the following entries.
# Test-Container
FROM node:9-alpine -
WORDDIR /usr/src/app -
COPY package*.json ./
RUN npm install -
copy . .
EXPOSE 9000 -
CMD ['npm", "start"]
Which of the following commands should the administrator use to accomplish this task? (Choose two).
Mistermiyagi
3 weeks ago