Docker multiple entrypoints

后端 未结 9 872
情深已故
情深已故 2020-12-13 00:08

Say I have the following Dockerfile:

FROM ubuntu

RUN apt-get update
RUN apt-get install -y apache2
RUN apt-get install -y mongod #pretend this exists

EXPOS         


        
9条回答
  •  予麋鹿
    予麋鹿 (楼主)
    2020-12-13 00:17

    If you are trying to run multiple concurrent npm scripts such as a watch script and a build script for example, check out:

    How can I run multiple npm scripts in parallel?

提交回复
热议问题