Last active
November 22, 2017 05:08
-
-
Save isuzuki/34bb3d8e433240d54932d70fe01b4d6f to your computer and use it in GitHub Desktop.
debian docker snippet (referrence https://qiita.com/white_aspara25/items/723ae4ebf0bfefe2115c)
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
FROM debian | |
RUN apt-get update \ | |
&& apt-get upgrade -y \ | |
# add install packages | |
&& apt-get install -y {packages} \ | |
&& apt-get purge -y --auto-remove |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment