-
Notifications
You must be signed in to change notification settings - Fork 207
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ed2558b
commit e80d624
Showing
5 changed files
with
16 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
13.4.0 | ||
13.4.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,12 +4,14 @@ MAINTAINER [email protected] | |
# Go, Python, Java and other dependencies. | ||
RUN apt-get update && \ | ||
apt-get install -y python3 python3-dev python3-pip openjdk-8-jdk-headless \ | ||
curl unzip git locales pkg-config zlib1g-dev golint && \ | ||
curl unzip git locales pkg-config zlib1g-dev && \ | ||
apt-get clean | ||
|
||
# Go - we want 1.11 here but the latest package available is 1.10. | ||
RUN curl -fsSL https://dl.google.com/go/go1.11.4.linux-amd64.tar.gz | tar -xzC /usr/local | ||
RUN curl -fsSL https://dl.google.com/go/go1.11.5.linux-amd64.tar.gz | tar -xzC /usr/local | ||
RUN ln -s /usr/local/go/bin/go /usr/local/bin/go && ln -s /usr/local/go/bin/gofmt /usr/local/bin/gofmt | ||
# Golint | ||
RUN go get golang.org/x/lint/golint && mv ~/go/bin/golint /usr/local/bin && rm -rf ~/go | ||
|
||
# Locale | ||
RUN locale-gen en_GB.UTF-8 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
FROM ubuntu:bionic | ||
MAINTAINER [email protected] | ||
|
||
# Most dependencies; Python, Java, Clang and Ruby (only used for fpm) | ||
# Most dependencies; Python, Java, Clang | ||
RUN apt-get update && \ | ||
apt-get install -y python3 python3-dev python3-pip openjdk-11-jdk-headless \ | ||
curl unzip git locales pkg-config zlib1g-dev clang && \ | ||
apt-get clean | ||
|
||
# Go - we want 1.11 here but the latest package available is 1.10. | ||
RUN curl -fsSL https://dl.google.com/go/go1.11.4.linux-amd64.tar.gz | tar -xzC /usr/local | ||
RUN curl -fsSL https://dl.google.com/go/go1.11.5.linux-amd64.tar.gz | tar -xzC /usr/local | ||
RUN ln -s /usr/local/go/bin/go /usr/local/bin/go && ln -s /usr/local/go/bin/gofmt /usr/local/bin/gofmt | ||
|
||
# Locale | ||
|