Sha256: a3eba80b81fc863c38cbf3c2754f4ae0c22e3e2ed377387f898cf515f49b118f

Contents?: true

Size: 1.56 KB

Versions: 1

Compression:

Stored size: 1.56 KB

Contents

FROM ruby:2.3.1-alpine
MAINTAINER Ryan Schlesinger <ryan@outstand.com>

RUN addgroup -S ecs_console && \
    adduser -S -G ecs_console ecs_console

ENV GOSU_VERSION 1.9
ENV DUMB_INIT_VERSION 1.1.3

RUN apk add --no-cache ca-certificates gnupg openssl && \
    mkdir -p /tmp/build && \
    cd /tmp/build && \
    gpg --keyserver pool.sks-keyservers.net --recv-keys B42F6819007F00F88E364FD4036A9C25BF357DD4 && \
    wget -O gosu "https://github.com/tianon/gosu/releases/download/${GOSU_VERSION}/gosu-amd64" && \
    wget -O gosu.asc "https://github.com/tianon/gosu/releases/download/${GOSU_VERSION}/gosu-amd64.asc" && \
    gpg --verify gosu.asc && \
    chmod +x gosu && \
    cp gosu /bin/gosu && \
    wget https://github.com/Yelp/dumb-init/releases/download/v${DUMB_INIT_VERSION}/dumb-init_${DUMB_INIT_VERSION}_amd64 && \
    wget https://github.com/Yelp/dumb-init/releases/download/v${DUMB_INIT_VERSION}/sha256sums && \
    grep dumb-init_${DUMB_INIT_VERSION}_amd64$ sha256sums | sha256sum -c && \
    chmod +x dumb-init_${DUMB_INIT_VERSION}_amd64 && \
    cp dumb-init_${DUMB_INIT_VERSION}_amd64 /bin/dumb-init && \
    cd /tmp && \
    rm -rf /tmp/build && \
    apk del gnupg && \
    rm -rf /root/.gnupg

WORKDIR /ecs_console

ENV ECS_CONSOLE_VERSION=0.1.0

RUN gem install ecs_console -v ${ECS_CONSOLE_VERSION} && \
    mkdir -p /home/ecs_console/.ssh && \
    chown ecs_console:ecs_console /home/ecs_console/.ssh && \
    chmod 700 /home/ecs_console/.ssh

COPY scripts/docker-entrypoint.sh /docker-entrypoint.sh

ENV DUMB_INIT_SETSID 0
ENTRYPOINT ["/docker-entrypoint.sh"]
CMD ["help"]

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
ecs_console-0.1.0 Dockerfile.release