mirror of
https://github.com/clockworklabs/SpacetimeDB.git
synced 2026-03-20 09:01:05 +08:00
# Description of Changes Required in order to bump rolldown to its latest version, which I'm planning to do afterwards. I also figure we may as well do this before releasing a major version. # Expected complexity level and risk 2 # Testing n/a
7 lines
354 B
Docker
7 lines
354 B
Docker
# Minimal Dockerfile that just wraps pre-built binaries, so we can test the server inside docker
|
|
FROM rust:1.93.0
|
|
RUN mkdir -p /stdb/data
|
|
COPY ./target/debug/spacetimedb-standalone ./target/debug/spacetimedb-cli /usr/local/bin/
|
|
COPY ./crates/standalone/config.toml /stdb/data/config.toml
|
|
RUN ln -s /usr/local/bin/spacetimedb-cli /usr/local/bin/spacetime
|