Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Revert #6865 and fix build with Ubuntu 22.04 (#7352) #7363

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 4 additions & 8 deletions Dockerfile.test
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
# See `/docker` for a generic and production-ready docker file
##

FROM ubuntu:23.04
FROM ubuntu:22.04

ENV DEBIAN_FRONTEND noninteractive

RUN apt-get update \
&& apt-get install -y --no-install-recommends \
software-properties-common \
software-properties-common gpg-agent \
&& add-apt-repository ppa:git-core/ppa -y \
&& apt-get dist-upgrade -y \
&& apt-get install -y --no-install-recommends \
Expand All @@ -30,13 +30,9 @@ RUN apt-get update \
unixodbc-dev \
&& add-apt-repository ppa:deadsnakes/ppa \
&& apt-get install -y \
python \
python-dev \
python3-pip \
python3.6 \
python3.6-dev \
python-is-python3 \
python-dev-is-python3 \
python3-pip \
python3.6-venv \
python3.7 \
python3.7-dev \
python3.7-venv \
Expand Down