[Docker] 처음하는 사람도 쉽게 Docker file 만들고 build 해보기
최근에 docker로 image를 만들 일이 있어서 해보고 있는 중이다. docker에 대한 기초적인 것도 모르기 때문에 경험 위주로 하였으니, 다른 글도 참고 바람. build options --no-cache : 이전에 했던 캐쉬를 제거 -t : tag 달기 -f : Docker file name docker build --no-cache -t test/test:latest -t test/test:1.0.0 -f ./Dockerfile DockerFile은 anaconda를 만드는 것을 복붙 해왔다. FROM ubuntu:18.04 ENV LANG=C.UTF-8 LC_ALL=C.UTF-8 ENV PATH /opt/conda/bin:$PATH RUN apt-get update --fix-missing ..
2020.05.09