We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ce61348 commit 7019674Copy full SHA for 7019674
1 file changed
Dockerfile
@@ -1,20 +1,13 @@
1
# syntax=docker/dockerfile:experimental
2
-FROM quay.io/unstructured-io/base-images:wolfi-py3.12-slim-latest as base
+FROM quay.io/unstructured-io/base-images:wolfi-base-latest as base
3
4
# NOTE(crag): NB_USER ARG for mybinder.org compat:
5
# https://mybinder.readthedocs.io/en/latest/tutorials/dockerfile.html
6
ARG NB_USER=notebook-user
7
ARG NB_UID=1000
8
ARG PIP_VERSION
9
ARG PIPELINE_PACKAGE
10
-ARG PYTHON_VERSION="3.12"
11
-
12
-USER root
13
14
-RUN apk add --no-cache mesa-gl glib shadow tesseract-ocr \
15
- tesseract-ocr-data-eng tesseract-ocr-data-kor \
16
- && useradd -m -u ${NB_UID} -s /bin/sh ${NB_USER}
17
-RUN chown -R ${NB_USER}:${NB_USER} ${HOME}
+ARG PYTHON_VERSION="3.11"
18
19
# Set up environment
20
ENV PYTHON python${PYTHON_VERSION}
0 commit comments