LoginSignup
1
0

ベースイメージ

基礎となるImageでFROMへ記述する

FROM ubuntu:20.04

バリアント

ベースイメージを拡張・カスタマイズしたもの

RUN apt-get update && apt-get install -y \
    nginx \
    curl

COPY my-app /usr/src/my-app

ENTRYPOINT ["nginx", "-g", "daemon off;"]

つまり

上記では、ubuntu:20.04ベースイメージを使って、追加のパッケージをインストールしてアプリケーションを特定のディレクトリにコピーし、nginxをエントリーポイントとして設定している

node:20.14-alpine3.20の場合はalpine:3.20をベースにしてバリアントとしてNode.jsを組み込んだイメージ

1
0
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
1
0