Skip to content

Commit

Permalink
Merge branch 'self-hosting-setup' of github.com:quadratichq/quadratic…
Browse files Browse the repository at this point in the history
… into self-hosting-setup
  • Loading branch information
ddimaria committed Nov 4, 2024
2 parents 9062aef + 249e0c9 commit 7991c6b
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions quadratic-client/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,13 @@ ENV PATH="/root/.cargo/bin:${PATH}"

# Install wasm-pack
RUN echo 'Installing wasm-pack...' && curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh
RUN echo 'wasm-pack version:' && wasm-pack --version

# Install wasm32-unknown-unknown target
# RUN rustup target add wasm32-unknown-unknown

# Install python, binaryen & clean up
RUN apt-get update && apt-get install -y python-is-python3 python3-pip binaryen && apt-get clean && rm -rf /var/lib/apt/lists/*
# Install python & clean up
RUN apt-get update && apt-get install -y python-is-python3 python3-pip && apt-get clean && rm -rf /var/lib/apt/lists/*

# Install npm dependencies
WORKDIR /app
Expand Down

0 comments on commit 7991c6b

Please sign in to comment.