GoCD Agent Install #1. GoCD agent 의 20.8.0 version 의 Docker Image Download gocd-agent에 여러가지 source를 추가 설치해야 한다. 이를 위한 Dockerfile은 아래와 같다. 더보기 FROM gocd/gocd-agent-ubuntu-18.04:v20.10.0 MAINTAINER seoki USER root ENV DEBIAN_FRONTEND noninteractive RUN apt-get update -y && apt-get install -y locales && apt-get install -y apt-utils RUN export LANGUAGE=en_US.UTF-8 && export LANG=en_US.UTF-8 && expor..