Rename import paths from camlistore.org to perkeep.org.
Part of the project renaming, issue #981.
After this, users will need to mv their $GOPATH/src/camlistore.org to
$GOPATH/src/perkeep.org. Sorry.
This doesn't yet rename the tools like camlistored, camput, camget,
camtool, etc.
Also, this only moves the lru package to internal. More will move to
internal later.
Also, this doesn't yet remove the "/pkg/" directory. That'll likely
happen later.
This updates some docs, but not all.
devcam test now passes again, even with Go 1.10 (which requires vet
checks are clean too). So a bunch of vet tests are fixed in this CL
too, and a bunch of other broken tests are now fixed (introduced from
the past week of merging the CL backlog).
Change-Id: If580db1691b5b99f8ed6195070789b1f44877dd4
2018-01-01 22:41:41 +00:00
|
|
|
# Copyright 2017 The Perkeep Authors.
|
2014-02-08 21:58:20 +00:00
|
|
|
|
2022-06-01 08:00:52 +00:00
|
|
|
FROM openjdk:11-jdk
|
2014-02-08 21:58:20 +00:00
|
|
|
|
2017-05-31 18:10:20 +00:00
|
|
|
MAINTAINER camlistore <camlistore@googlegroups.com>
|
2014-02-22 02:17:59 +00:00
|
|
|
|
2017-05-31 18:10:20 +00:00
|
|
|
RUN echo "Adding gopher user and group" \
|
|
|
|
&& groupadd --system --gid 1000 gopher \
|
|
|
|
&& useradd --system --gid gopher --uid 1000 --shell /bin/bash --create-home gopher \
|
|
|
|
&& mkdir /home/gopher/.gradle \
|
|
|
|
&& chown --recursive gopher:gopher /home/gopher
|
|
|
|
|
|
|
|
# To enable running android tools such as aapt
|
|
|
|
RUN apt-get update && apt-get -y upgrade
|
|
|
|
RUN apt-get install -y lib32z1 lib32stdc++6
|
|
|
|
# For Go:
|
2022-06-01 08:00:52 +00:00
|
|
|
RUN apt-get -y --no-install-recommends install curl gcc make
|
2017-05-31 18:10:20 +00:00
|
|
|
RUN apt-get -y --no-install-recommends install ca-certificates libc6-dev git
|
|
|
|
|
|
|
|
USER gopher
|
|
|
|
VOLUME "/home/gopher/.gradle"
|
|
|
|
ENV GOPHER /home/gopher
|
|
|
|
|
|
|
|
# Get android sdk, ndk, and rest of the stuff needed to build the android app.
|
|
|
|
WORKDIR $GOPHER
|
|
|
|
RUN mkdir android-sdk
|
|
|
|
ENV ANDROID_HOME $GOPHER/android-sdk
|
|
|
|
WORKDIR $ANDROID_HOME
|
2022-06-01 08:00:52 +00:00
|
|
|
RUN curl -O -L https://dl.google.com/android/repository/commandlinetools-linux-8512546_latest.zip
|
|
|
|
RUN echo '2ccbda4302db862a28ada25aa7425d99dce9462046003c1714b059b5c47970d8 ./commandlinetools-linux-8512546_latest.zip' | sha256sum -c
|
|
|
|
RUN unzip ./commandlinetools-linux-8512546_latest.zip
|
|
|
|
ENV SDK_MGR "$ANDROID_HOME/cmdline-tools/bin/sdkmanager --sdk_root=$ANDROID_HOME"
|
|
|
|
RUN echo y | $SDK_MGR --update
|
|
|
|
RUN echo y | $SDK_MGR 'platforms;android-27'
|
|
|
|
RUN echo y | $SDK_MGR 'build-tools;27.0.0'
|
|
|
|
RUN echo y | $SDK_MGR 'extras;android;m2repository'
|
|
|
|
RUN echo y | $SDK_MGR 'ndk-bundle'
|
|
|
|
RUN echo y | keytool -genkeypair -dname "cn=Gopher" \
|
|
|
|
-alias perkeep \
|
|
|
|
-keypass gopher -keystore $GOPHER/keystore \
|
|
|
|
-storepass gopher \
|
|
|
|
-validity 20000
|
2014-02-09 01:07:56 +00:00
|
|
|
|
2016-05-13 19:06:23 +00:00
|
|
|
# Get Go stable release
|
2017-05-31 18:10:20 +00:00
|
|
|
WORKDIR $GOPHER
|
2022-06-01 08:00:52 +00:00
|
|
|
RUN curl -O https://storage.googleapis.com/golang/go1.18.linux-amd64.tar.gz
|
|
|
|
RUN echo 'e85278e98f57cdb150fe8409e6e5df5343ecb13cebf03a5d5ff12bd55a80264f go1.18.linux-amd64.tar.gz' | sha256sum -c
|
|
|
|
RUN tar -xzf go1.18.linux-amd64.tar.gz
|
2017-05-31 18:10:20 +00:00
|
|
|
ENV GOPATH $GOPHER
|
|
|
|
ENV GOROOT $GOPHER/go
|
|
|
|
ENV PATH $PATH:$GOROOT/bin:$GOPHER/bin
|
|
|
|
|
|
|
|
# Get gomobile
|
2022-06-01 08:00:52 +00:00
|
|
|
RUN go install -v golang.org/x/mobile/cmd/gomobile@8578da9835fd
|
2017-05-31 18:10:20 +00:00
|
|
|
|
|
|
|
# init gomobile
|
2022-06-01 08:00:52 +00:00
|
|
|
RUN gomobile init
|
2017-05-31 18:10:20 +00:00
|
|
|
|
|
|
|
CMD ["/bin/bash"]
|