mirror of
https://github.com/leon-ai/leon.git
synced 2024-11-24 04:31:31 +03:00
70 lines
1.8 KiB
Docker
70 lines
1.8 KiB
Docker
FROM ubuntu:latest
|
|
ENV IS_DOCKER true
|
|
|
|
# Replace shell with bash so we can source files
|
|
RUN rm /bin/sh && ln -s /bin/bash /bin/sh
|
|
|
|
# Set debconf to run non-interactively
|
|
RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selections
|
|
|
|
# Install base dependencies
|
|
RUN apt-get update && apt-get install --yes -q --no-install-recommends \
|
|
apt-transport-https \
|
|
build-essential \
|
|
ca-certificates \
|
|
curl \
|
|
git \
|
|
wget \
|
|
libssl-dev \
|
|
zlib1g-dev \
|
|
libbz2-dev \
|
|
libreadline-dev \
|
|
libsqlite3-dev \
|
|
llvm \
|
|
libncurses5-dev \
|
|
xz-utils \
|
|
tk-dev libxml2-dev \
|
|
libxmlsec1-dev \
|
|
libffi-dev \
|
|
liblzma-dev
|
|
|
|
# Run the container as an unprivileged user
|
|
RUN groupadd docker && useradd -g docker -s /bin/bash -m docker
|
|
USER docker
|
|
WORKDIR /home/docker
|
|
|
|
# Install Node.js with nvm
|
|
ENV NVM_DIR /home/docker/nvm
|
|
ENV NODE_VERSION v16.17.0
|
|
|
|
RUN curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.1/install.sh | bash
|
|
RUN /bin/bash -c "source $NVM_DIR/nvm.sh && nvm install $NODE_VERSION && nvm use --delete-prefix $NODE_VERSION"
|
|
|
|
ENV NODE_PATH $NVM_DIR/versions/node/$NODE_VERSION/lib/node_modules
|
|
ENV PATH $NVM_DIR/versions/node/$NODE_VERSION/bin:$PATH
|
|
|
|
# Install Python with pyenv
|
|
RUN git clone --depth=1 https://github.com/pyenv/pyenv.git .pyenv
|
|
ENV PYENV_ROOT="/home/docker/.pyenv"
|
|
ENV PATH="${PYENV_ROOT}/shims:${PYENV_ROOT}/bin:${PATH}"
|
|
|
|
ENV PYTHON_VERSION=3.9.10
|
|
RUN pyenv install ${PYTHON_VERSION}
|
|
RUN pyenv global ${PYTHON_VERSION}
|
|
|
|
# Install Pipenv
|
|
ENV PYTHON_BIN_PATH /home/docker/.local/bin
|
|
ENV PATH="${PYTHON_BIN_PATH}:${PATH}"
|
|
RUN python -m pip install --user --force-reinstall pipenv virtualenv
|
|
|
|
# Install Leon
|
|
WORKDIR /home/docker/leon
|
|
USER root
|
|
RUN chown -R docker /home/docker/leon
|
|
USER docker
|
|
COPY --chown=docker ./ ./
|
|
RUN npm install
|
|
RUN npm run build
|
|
|
|
CMD ["npm", "start"]
|