Home Dockerfile에서Container 환경변수 수정하기
Post
Cancel

Dockerfile에서Container 환경변수 수정하기

먼저 alias python=python3 를 추가하고 싶다고 하자.

Interactive Shell에만 적용하고 싶은 경우

1
2
RUN echo 'alias python=python3' >> ~/.bashrc
RUN echo 'PYSPARK_PYTHON=python3' >> ~/.bashrc

Non Interactive shell에도 적용하고 싶은 경우

1
2
RUN echo -e '#!/bin/bash\nalias python=python3' > /usr/bin/update_alias && \
    chmod +x /usr/bin/update_alias && update_alias
This post is licensed under CC BY 4.0 by the author.

Idiom

PySpark과 Scala 코드를 실행하기 위한 단일 이미지 사용기

Comments powered by Disqus.

Trending Tags