[Docker] 우분투 /sbin/init 및 systemctl 사용하기
우분투 /sbin/init 및 systemctl 사용하기 Dockerfile 편집 FROM ubuntu:22.04 ARG DEBIAN_FRONTEND=noninteractive ENV TZ=Asia/Seoul RUN sed -i 's/kr.archive.ubuntu.com/mirror.kakao.com/g' /etc/apt/sources.list RUN apt update \ && apt install -qq -y init systemd \ && apt install -qq -y build-essential \ && apt install -qq -y tzdata \ && apt install -qq -y vim curl \ && apt-get clean autoclean \ && apt-get autor..
2022.12.02