IT 공부/PaaS 2022. 10. 26.
[Docker] DockerFile 도커파일 1
1. 도커파일 생성 root@k8s-node1:~# mkdir dockerFile root@k8s-node1:~# cd dockerFile/ root@k8s-node1:~/dockerFile# ll total 8 drwxr-xr-x 2 root root 4096 10월 26 13:45 ./ drwx------ 8 root root 4096 10월 26 13:45 ../ root@k8s-node1:~/dockerFile# echo test >> test.html 새로운 디렉토리를 하나 만들어서 안에서 작업한다. 도커파일을 빌드시에 해당 디렉토리가 루트가 되어 작업이 수행된다. vi Dockerfile #FROM : Base Image FROM ubuntu:14.04 #LABEL, MAINTAINER : 메..