Build images with ubuntu-20.04 and python-3.9

This commit is contained in:
Ayaz Salikhov
2022-10-09 14:21:30 +04:00
parent a374cab4fc
commit 5ae537728c
2 changed files with 2 additions and 2 deletions

View File

@@ -85,7 +85,7 @@ RUN echo "auth requisite pam_deny.so" >> /etc/pam.d/su && \
USER ${NB_UID} USER ${NB_UID}
# Pin python version here, or set it to "default" # Pin python version here, or set it to "default"
ARG PYTHON_VERSION=3.8 ARG PYTHON_VERSION=3.9
# Setup work directory for backward-compatibility # Setup work directory for backward-compatibility
RUN mkdir "/home/${NB_USER}/work" && \ RUN mkdir "/home/${NB_USER}/work" && \

View File

@@ -5,7 +5,7 @@ import logging
from tests.conftest import TrackedContainer from tests.conftest import TrackedContainer
LOGGER = logging.getLogger(__name__) LOGGER = logging.getLogger(__name__)
EXPECTED_PYTHON_VERSION = "3.8" EXPECTED_PYTHON_VERSION = "3.9"
def test_python_version(container: TrackedContainer) -> None: def test_python_version(container: TrackedContainer) -> None: