Skip to content

Commit 9a4878e

Browse files
authored
Merge pull request #404 from broadinstitute/jb-cloud-build-interactive-error
Updating to Ubuntu 22.04, addressing cloud build interactive error (SCP-6075)
2 parents 9d49781 + 61e6bbd commit 9a4878e

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

Dockerfile

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@
1010
# Use a managed base image from Google. It is continually updated for
1111
# security fixes (thus the "latest" tag).
1212
# https://github.com/GoogleContainerTools/base-images-docker/tree/master/ubuntu
13-
FROM marketplace.gcr.io/google/ubuntu2004:latest
13+
FROM marketplace.gcr.io/google/ubuntu2204:latest
14+
ENV DEBIAN_FRONTEND=noninteractive
1415

1516
# RUN echo "Uncomment to clear cached layers below this statement (2022-03-14-1441)"
1617

@@ -21,7 +22,8 @@ RUN apt-get -y update && \
2122
apt-get -y install python3-pip && \
2223
apt-get -y install python3.10 && \
2324
apt-get -y install python3.10-dev && \
24-
apt-get -y install python3.10-distutils
25+
apt-get -y install python3.10-distutils && \
26+
apt-get -y remove python3-blinker # due to pip install errors of distutils package
2527

2628
RUN apt-get -y update && apt-get -y install curl
2729

-818 Bytes
Binary file not shown.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1764096355 # validation cache key
1+
1764620615 # validation cache key

0 commit comments

Comments
 (0)