강의

멘토링

커뮤니티

Inflearn Community Q&A

mkp0131's profile image
mkp0131

asked

Learn Docker and CI environment by following [2023.11 update]

Writing a Dockerfile

베이스이미지가 `node:10` 이라는 것을 어떻게 검색할 수 있나요?

Resolved

Written on

·

489

0

베이스이미지가 node:10 이라는 것을 어떻게 검색할 수 있나요?

도커허브에서 검색을 해보았는데 from 에서 어떻게 사용하는지?

또한 버전은 몇부터 몇까지 있는지 명확하게 나온게 없는 것 같습니다.

https://hub.docker.com/_/node

데이터 엔지니어링cicdci/cdtravis-cigithubaws데이터-엔지니어링docker

Answer 1

2

John Ahn님의 프로필 이미지
John Ahn
Instructor

안녕하세요!

https://hub.docker.com/_/node/tags?page=1

여기에서 보면 최신 순으로 나와있습니다.
그래서 최신 버전을 원하시는 버전을 사용하시면 됩니다.

image
예를 들어서

latest는

node:latest

slim은

node:slim 입니다!

감사합니다.

mkp0131's profile image
mkp0131

asked

Ask a question