-
Notifications
You must be signed in to change notification settings - Fork 3.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e9b95fd
commit 166e89d
Showing
3 changed files
with
18 additions
and
43 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,12 @@ | ||
# syntax = docker/dockerfile:1.2 | ||
|
||
FROM rust:1.76-bullseye as builder | ||
WORKDIR app | ||
COPY . . | ||
|
||
# Compile collab server | ||
ARG CARGO_PROFILE_RELEASE_PANIC=abort | ||
ARG GITHUB_SHA | ||
|
||
ENV GITHUB_SHA=$GITHUB_SHA | ||
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 | ||
COPY ./target/release/collab /app/collab | ||
COPY ./crates/collab/migrations /app/migrations | ||
|
||
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"] |