Skip to content

Instantly share code, notes, and snippets.

@tdimnet
Last active March 29, 2023 13:18
Show Gist options
  • Select an option

  • Save tdimnet/96a5d87fea9955c7824a99534821047a to your computer and use it in GitHub Desktop.

Select an option

Save tdimnet/96a5d87fea9955c7824a99534821047a to your computer and use it in GitHub Desktop.
# Je récupère une image ubuntu 18
FROM ubuntu:18.04
# Je copie l'intégralité de mon répertoire courant dans un répertoire /app
COPY . /app
# Je précise que mon répertoire de travail dans mon image sera /app
WORKDIR /app
# Je lance la commande
CMD [ "echo", "hello, world" ]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment