File size: 383 Bytes
1d2f821
 
 
 
a0b09f0
1d2f821
 
 
 
 
 
 
5aebecb
b33216a
7818020
1d2f821
5aebecb
1d2f821
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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