Skip to content

Instantly share code, notes, and snippets.

@dhavaln
Created October 2, 2019 07:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dhavaln/fc868eba15e9dc7cbbf391cf5ec493e9 to your computer and use it in GitHub Desktop.
Save dhavaln/fc868eba15e9dc7cbbf391cf5ec493e9 to your computer and use it in GitHub Desktop.
Docker Inline Demo
# Demo1: This is an inline build
docker build -t inlineimage -f- . <<EOF
FROM node:10
MAINTAINER dhavaln
WORKDIR /usr/src
RUN echo "console.log('hello world');" > index.js
CMD ["node", "index.js"]
<<EOF
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment