second-me / Dockerfile
krasnoglaziiik's picture
Update Dockerfile
7818020 verified
raw
history blame contribute delete
383 Bytes
FROM ubuntu:latest
RUN apt update -y && apt upgrade -y
RUN apt install wget curl unzip git python3 -y
RUN git clone https://github.com/mindverse/Second-Me
WORKDIR ./Second-Me
RUN curl -LsSf https://astral.sh/uv/install.sh | sh
RUN bash -c "source $HOME/.local/bin/env"
RUN bash -c "uv venv --python 3.12"
RUN bash "source .venv/bin/activate"
RUN make setup
RUN make restart