Skip to content

Commit

Permalink
Fix Docker image.
Browse files Browse the repository at this point in the history
  • Loading branch information
russjones committed Jan 11, 2019
1 parent 392d340 commit c0dea43
Showing 1 changed file with 16 additions and 5 deletions.
21 changes: 16 additions & 5 deletions build.assets/charts/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,23 @@
FROM ubuntu:18.10
FROM ubuntu:18.04

RUN apt-get update && apt-get install -y \
# Install dumb-init and ca-certificate. The dumb-init package is to ensure
# signals and orphaned processes are are handled correctly. The ca-certificate
# package is installed because the base Ubuntu image does not come with any
# certificate authorities.
#
# Note that /var/lib/apt/lists/* is cleaned up in the same RUN command as
# "apt-get update" to reduce the size of the image.
RUN apt-get update && apt-get upgrade -y && \
apt-get install --no-install-recommends -y \
dumb-init \
&& rm -rf /var/lib/apt/lists/*
ca-certificates \
&& update-ca-certificates \
&& rm -rf /var/lib/apt/lists/*

# Bundle teleport and control binary
# Bundle "teleport", "tctl", and "tsh" binaries into image.
ADD teleport /usr/local/bin/teleport
ADD tctl /usr/local/bin/tctl
ADD tsh /usr/local/bin/tsh

# By setting this entry point, we expose make target as command
# By setting this entry point, we expose make target as command.
ENTRYPOINT ["/usr/bin/dumb-init", "teleport", "start", "-c", "/etc/teleport/teleport.yaml"]

0 comments on commit c0dea43

Please sign in to comment.