mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-07 20:39:04 +03:00
1537500fcb
We're going full monorepo. Co-Authored-By: Max Brunsfeld <maxbrunsfeld@gmail.com>
16 lines
496 B
Docker
16 lines
496 B
Docker
# syntax = docker/dockerfile:1.2
|
|
|
|
FROM rust as builder
|
|
WORKDIR app
|
|
RUN --mount=type=cache,target=/usr/local/cargo/registry \
|
|
--mount=type=cache,target=./target \
|
|
cargo install sqlx-cli --root=/app --target-dir=/app/target --version 0.5.5
|
|
|
|
FROM debian:buster-slim as runtime
|
|
RUN apt-get update; \
|
|
apt-get install -y --no-install-recommends libssl1.1
|
|
WORKDIR app
|
|
COPY --from=builder /app/bin/sqlx /app
|
|
COPY ./server/migrations /app/migrations
|
|
ENTRYPOINT ["/app/sqlx", "migrate", "run"]
|