-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #87 from choria-io/ubuntu_noble
Support ubuntu noble
- Loading branch information
Showing
4 changed files
with
58 additions
and
5 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 |
---|---|---|
@@ -0,0 +1,34 @@ | ||
FROM ubuntu:noble | ||
|
||
ARG GOVERSION="1.14.10" | ||
RUN echo -n noble_64 > /etc/packager.txt | ||
|
||
ENV DEBIAN_FRONTEND=noninteractive | ||
RUN apt-get update && apt-get install -y \ | ||
dpkg-dev \ | ||
wget \ | ||
ruby \ | ||
rake \ | ||
debhelper \ | ||
git | ||
|
||
|
||
RUN wget -q https://dl.google.com/go/go${GOVERSION}.linux-amd64.tar.gz && \ | ||
tar -C /usr/local -xzf go${GOVERSION}.linux-amd64.tar.gz && \ | ||
rm -f go${GOVERSION}.linux-amd64.tar.gz | ||
|
||
WORKDIR /build/source | ||
|
||
VOLUME /go | ||
VOLUME /build/artifacts | ||
|
||
ENV RUBYLIB=/packager/lib | ||
ENV PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/go/bin | ||
ENV GOPATH=/go | ||
ENV GO111MODULE=on | ||
|
||
COPY lib /packager/lib/ | ||
COPY bin /packager/bin/ | ||
COPY install-choria.sh /bin | ||
|
||
CMD /packager/bin/packager.rb |
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