mirror of
https://github.com/Unstructured-IO/unstructured.git
synced 2025-06-27 02:30:08 +00:00

### Description Remove all uses of python3.8 --------- Co-authored-by: ryannikolaidis <1208590+ryannikolaidis@users.noreply.github.com> Co-authored-by: rbiseck3 <rbiseck3@users.noreply.github.com>
27 lines
735 B
Docker
27 lines
735 B
Docker
# Dockerfile that approximates the CI image
|
|
#
|
|
# Mainly useful for updating test-ingest fixtures
|
|
|
|
FROM ubuntu:22.04
|
|
|
|
COPY scripts/setup_ubuntu.sh scripts/setup_ubuntu.sh
|
|
|
|
RUN bash scripts/setup_ubuntu.sh root
|
|
|
|
COPY requirements/ requirements/
|
|
COPY Makefile Makefile
|
|
|
|
SHELL ["/bin/bash", "-c"]
|
|
|
|
RUN source ~/.bashrc && pyenv virtualenv 3.10 unstructured && \
|
|
source ~/.pyenv/versions/unstructured/bin/activate && \
|
|
make install-ci && \
|
|
make install-ingest-s3 && \
|
|
make install-ingest-azure && \
|
|
make install-ingest-github && \
|
|
make install-ingest-gitlab && \
|
|
make install-ingest-wikipedia && \
|
|
make install-ingest-discord && \
|
|
make install install-ingest-slack && \
|
|
make install-ingest-confluence
|