File size: 1,309 Bytes
9bbddc7
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
ddc0a44
9bbddc7
8cbe088
9bbddc7
 
 
8cbe088
9bbddc7
 
 
 
8cbe088
 
 
 
 
 
 
 
9bbddc7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
FROM ubuntu:22.04 as base
WORKDIR /app
ENV NODE_ENV=production

FROM base as build

RUN apt-get update -qq && \
    apt-get install -y git curl unzip wget gnupg build-essential lsb-release

RUN curl -fsSL https://deb.nodesource.com/setup_18.x | bash - && \
    apt-get install -y nodejs

RUN useradd -m -u 1000 user
RUN chown -R user:user /app /usr/local /tmp
USER user
ENV HOME=/home/user \
    PATH=/home/user/.local/bin:$PATH

WORKDIR $HOME/app

RUN git clone https://github.com/a16z-infra/ai-town.git . && \
    git checkout f005c46d1759b47bb3ade8d41952a713c4faf331 

RUN npm install --include=dev @huggingface/inference
RUN npm install --include=dev @huggingface/hub


RUN curl -L -O https://github.com/get-convex/convex-backend/releases/download/precompiled-2024-05-07-13337fd/convex-local-backend-x86_64-unknown-linux-gnu.zip && \
    unzip convex-local-backend-x86_64-unknown-linux-gnu.zip 

COPY ./patches ./
COPY ./patches/vite.config.ts ./
COPY ./patches/characters.ts ./patches/gentle.js ./data/
COPY ./patches/run.sh ./

COPY ./map.png ./assets/map.png
COPY ./patches/assets/GrayCat.png ./assets/GrayCat.png
COPY ./patches/assets/OrangeCat.png ./assets/OrangeCat.png
COPY ./patches/assets/hf.svg ./assets/hf.svg
COPY ./patches/data/spritesheets/c1.ts ./data/spritesheets/c1.ts



CMD ["./run.sh"]