LoginSignup
2
2

More than 5 years have passed since last update.

Docker Pythonイメージのwheezyって何?

Posted at

Docker超小ネタですみません。

Q. Pythonイメージのtagにある -wheezy って何?

無印はDebian 8 (jessie)系なので、Debian 7(wheezy)系を使いたい人向けに提供されている(と思われる)。

なんのこと?

これ:
docker-python-wheezy.png

証拠

$ diff -u <(curl -sSL https://raw.githubusercontent.com/docker-library/python/9383f7d4d2f96068e8957651aa3588fee8b48f71/2.7/wheezy/Dockerfile) <(curl -sSL https://raw.githubusercontent.com/docker-library/python/9383f7d4d2f96068e8957651aa3588fee8b48f71/2.7/Dockerfile)
--- /dev/fd/63  2016-06-08 12:09:22.000000000 +0900
+++ /dev/fd/62  2016-06-08 12:09:22.000000000 +0900
@@ -1,4 +1,4 @@
-FROM buildpack-deps:wheezy
+FROM buildpack-deps:jessie

 # remove several traces of debian python
 RUN apt-get purge -y python.*

Docker所感

アプリケーションとOSの間でバージョンの組み合わせ問題が発生し始めているんだけど、どうやって解決していくかが鍵。

2
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
2