File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 3434 run : python -m pytest tests/
3535 - name : Python linters
3636 run : .github/workflows/scripts/lint_python.sh
37+ Docker :
38+ runs-on : ubuntu-18.04
39+ steps :
40+ - uses : actions/checkout@v2
41+ - name : Check Image Builds
42+ run : docker build -t pyvertical:latest .
Original file line number Diff line number Diff line change 1- FROM python:3.8
1+ FROM python:3.7
22
3- LABEL version="0.1.0 "
3+ LABEL version="0.1.1 "
44LABEL maintainer="OpenMined"
55
66COPY . /pyvertical
@@ -10,7 +10,8 @@ WORKDIR /pyvertical
1010# See https://docs.bazel.build/versions/master/install-ubuntu.html
1111# # 1. Add bazel distribution
1212RUN apt install curl gnupg
13- RUN curl -f https://bazel.build/bazel-release.pub.gpg | apt-key add -
13+ RUN curl -f https://bazel.build/bazel-release.pub.gpg | gpg --dearmor > bazel.gpg
14+ RUN mv bazel.gpg /etc/apt/trusted.gpg.d/
1415RUN echo "deb [arch=amd64] https://storage.googleapis.com/bazel-apt stable jdk1.8" | tee /etc/apt/sources.list.d/bazel.list
1516
1617# # 2. Install
You can’t perform that action at this time.
0 commit comments