diff --git a/Dockerfile b/Dockerfile index b68c30c..c4b9b32 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Use an official Python runtime as a parent image -FROM python:3.9-slim +FROM python:3.11.6-slim # Set the working directory in the container WORKDIR /app diff --git a/README.md b/README.md index 7954fd1..b58e05a 100644 --- a/README.md +++ b/README.md @@ -230,6 +230,11 @@ docker compose build ## Release notes: +### 0.1.0 + +* Updated python: `3.11.6` +* j-sp returns full paths via REST API + ### 0.0.7 * j-sp generates cookies with `engine_user_id` field to identify user for creating unique python engine. diff --git a/local-run/with-jupyter-notebook/jupyter-notebook/Dockerfile b/local-run/with-jupyter-notebook/jupyter-notebook/Dockerfile index 6ac4f50..a63a90a 100644 --- a/local-run/with-jupyter-notebook/jupyter-notebook/Dockerfile +++ b/local-run/with-jupyter-notebook/jupyter-notebook/Dockerfile @@ -1,4 +1,4 @@ -FROM jupyter/datascience-notebook:python-3.9 +FROM jupyter/datascience-notebook:python-3.11.6 RUN echo "c.ServerApp.base_url = '/jupyter/'" >> /etc/jupyter/jupyter_server_config.py @@ -7,4 +7,6 @@ ENV PYTHONPATH="${PYTHONPATH}:${PYTHON_SHARED_LIB_PATH}" ENV PIP_TARGET="${PYTHON_SHARED_LIB_PATH}" RUN mkdir -p "${PYTHON_SHARED_LIB_PATH}" + +RUN pip install pandas RUN echo 'umask 0007' >> "${HOME}/.bashrc" \ No newline at end of file diff --git a/package_info.json b/package_info.json index c34cbec..de992a4 100644 --- a/package_info.json +++ b/package_info.json @@ -1,4 +1,4 @@ { "package_name": "th2-json-stream-provider", - "package_version": "0.0.7" + "package_version": "0.1.0" } \ No newline at end of file