Last active
March 29, 2023 13:18
-
-
Save tdimnet/96a5d87fea9955c7824a99534821047a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 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