mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-08 07:35:01 +03:00
e932f4cf47
**This PR also bumps wasmtime version from 0.38 to 2.0 as 0.38 does not build with Rust 1.75**. I did not test the plugin runtime as (AFAIK) we intend to deprecate it; also, wasmtime's most recent version is 16.0, so it'd make sense to bump the version at some point anyways. I did not bump the version to 16.0 straight away as that'd require code changes in `plugin_runtime`. Release Notes: - N/A
27 lines
880 B
Docker
27 lines
880 B
Docker
# syntax = docker/dockerfile:1.2
|
|
|
|
FROM rust:1.75-bullseye as builder
|
|
WORKDIR app
|
|
COPY . .
|
|
|
|
# Compile collab server
|
|
ARG CARGO_PROFILE_RELEASE_PANIC=abort
|
|
RUN --mount=type=cache,target=./script/node_modules \
|
|
--mount=type=cache,target=/usr/local/cargo/registry \
|
|
--mount=type=cache,target=./target \
|
|
cargo build --release --package collab --bin collab
|
|
|
|
# Copy collab server binary out of cached directory
|
|
RUN --mount=type=cache,target=./target \
|
|
cp /app/target/release/collab /app/collab
|
|
|
|
# Copy collab server binary to the runtime image
|
|
FROM debian:bullseye-slim as runtime
|
|
RUN apt-get update; \
|
|
apt-get install -y --no-install-recommends libcurl4-openssl-dev ca-certificates
|
|
WORKDIR app
|
|
COPY --from=builder /app/collab /app/collab
|
|
COPY --from=builder /app/crates/collab/migrations /app/migrations
|
|
ENV MIGRATIONS_PATH=/app/migrations
|
|
ENTRYPOINT ["/app/collab"]
|