mirror of
https://github.com/zed-industries/zed.git
synced 2026-05-23 12:37:09 +00:00
Closes #ISSUE Before you mark this PR as ready for review, make sure that you have: - [ ] Added a solid test coverage and/or screenshots from doing manual testing - [ ] Done a self-review taking into account security and performance aspects - [ ] Aligned any UI changes with the [UI checklist](https://github.com/zed-industries/zed/blob/main/CONTRIBUTING.md#uiux-checklist) Release Notes: - N/A
41 lines
1.2 KiB
Text
41 lines
1.2 KiB
Text
# syntax = docker/dockerfile:1.2
|
|
|
|
FROM rust:1.94-bookworm as builder
|
|
WORKDIR app
|
|
COPY . .
|
|
|
|
# Replace the Cargo configuration with the one used by collab.
|
|
COPY ./.cargo/collab-config.toml ./.cargo/config.toml
|
|
|
|
# Compile collab server
|
|
ARG CARGO_PROFILE_RELEASE_PANIC=abort
|
|
ARG GITHUB_SHA
|
|
|
|
ENV GITHUB_SHA=$GITHUB_SHA
|
|
|
|
# Also add `cmake`, since we need it to build `wasmtime`.
|
|
# clang is needed because `webrtc-sys` uses Clang-specific compiler flags.
|
|
RUN apt-get update; \
|
|
apt-get install -y --no-install-recommends cmake clang
|
|
|
|
ENV CC=clang
|
|
ENV CXX=clang++
|
|
|
|
RUN --mount=type=cache,target=./script/node_modules \
|
|
--mount=type=cache,target=/usr/local/cargo/registry \
|
|
--mount=type=cache,target=/usr/local/cargo/git \
|
|
--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:bookworm-slim as runtime
|
|
RUN apt-get update; \
|
|
apt-get install -y --no-install-recommends libcurl4-openssl-dev ca-certificates \
|
|
linux-perf binutils
|
|
WORKDIR app
|
|
COPY --from=builder /app/collab /app/collab
|
|
ENTRYPOINT ["/app/collab"]
|