파일구조
./docker_alpine/docker-compose.yml
./docker_alpine/alpine/Dockerfile
./docker_alpine/docker-compose.yml
version: '3'
services:
alpine:
hostname: alpine
container_name: alpine
build:
context: .
dockerfile: ./alpine/Dockerfile
volumes:
- ./alpine:/alpine
stdin_open: true
tty: true
./docker_alpine/alpine/Dockerfile
FROM alpine:3.13
RUN apk update
RUN apk add tzdata
RUN cp /usr/share/zoneinfo/Asia/Seoul /etc/localtime
RUN echo "Asia/Seoul" > /etc/timezone
RUN apk del tzdata
RUN apk add vim