Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Updated Dockerfile.release to build 0.23.0:
 - Use ubuntu:xenial as base image
 - Obtain keys from keyserver.ubuntu.com (keys.gnupg.net server times out really often)
  • Loading branch information
waj committed Jul 7, 2017
1 parent d24f79c commit 158a818
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile.release
@@ -1,9 +1,9 @@
FROM ubuntu:14.04
FROM ubuntu:xenial

RUN \
apt-get update && \
apt-get install -y apt-transport-https && \
apt-key adv --keyserver keys.gnupg.net --recv-keys 09617FD37CC06B54 && \
apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 09617FD37CC06B54 && \
echo "deb https://dist.crystal-lang.org/apt crystal main" > /etc/apt/sources.list.d/crystal.list && \
apt-get update && \
apt-get install -y crystal gcc pkg-config libssl-dev libxml2-dev libyaml-dev libgmp-dev git make && \
Expand Down

0 comments on commit 158a818

Please sign in to comment.