mirror of
https://github.com/langgenius/dify-plugin-daemon.git
synced 2026-07-25 13:35:32 -04:00
7 lines
291 B
Docker
7 lines
291 B
Docker
FROM ubuntu:22.04
|
|
|
|
# Install conda
|
|
RUN apt-get update && apt-get install -y wget && \
|
|
wget https://repo.anaconda.com/miniconda/Miniconda3-py39_4.10.3-Linux-x86_64.sh && \
|
|
bash Miniconda3-py39_4.10.3-Linux-x86_64.sh -b -p /miniconda3 && \
|
|
rm Miniconda3-py39_4.10.3-Linux-x86_64.sh |