Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

./bootstrap command not found in dockerfile

Add the following line to the Dockerfile
CMD sh /bootstrap.sh 
Comment

./bootstrap command not found in dockerfile


FROM ubuntu:16.04

COPY bootstrap.sh /

RUN apt-get update && apt-get clean && apt-get install -y 
    x11vnc 
    xvfb 
    fluxbox 
    wmctrl 
    wget 
    && wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add - 
    && echo "deb http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list 
    && apt-get update && apt-get -y install google-chrome-stable

RUN useradd apps 
    && mkdir -p /home/apps 
    && chown -v -R apps:apps /home/apps


RUN chmod +x /bootstrap.sh

CMD '/bootstrap.sh' 

Comment

PREVIOUS NEXT
Code Example
Shell :: How do I fix issue "E: some index files fail to download.They have been ignored or old ones are used instead" while apt-get update 
Shell :: linux convert multiple images 
Shell :: print all installed program with scoop 
Shell :: git diff list all pages 
Shell :: nmap -sY command use 
Shell :: turn on indexing win 11 
Shell :: docker error "fsevents@2.3.2" is an optional dependency and failed compatibility check. Excluding it from installation. 
Shell :: unzip start of central directory not found 
Shell :: rem command 
Shell :: install albert search ubuntu 
Shell :: brew install keepnote 
Shell :: $FOO, or val if unset (or null) 
Shell :: how to extract sequential files multiple zip files at once 
Shell :: jq show only certain fields 
Shell :: copy too large file commmand linux 
Shell :: fix git not showning persian letters 
Shell :: environment variables not showing in process.env in create react app in js 
Shell :: gitignore a specific file 
Shell :: not a git repository after clone 
Shell :: grep only number from line 
Shell :: how to save file in linux 
Shell :: find next greater number with same digits 
Shell :: linux delete file content 
Shell :: Switching the namespaces using kubectl commands 
Shell :: jenkins local 
Shell :: cp -r copy linux directory or file 
Shell :: rasberry pie gsm internet browsing 
Shell :: run level to boot in gui centos 
Php :: wp-config change url wp-config 
Php :: wordpress base theme child url 
ADD CONTENT
Topic
Content
Source link
Name
9+2 =