Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/Dockerfile/Rust.Dockerfile')
-rw-r--r--vendor/Dockerfile/Rust.Dockerfile13
1 files changed, 13 insertions, 0 deletions
diff --git a/vendor/Dockerfile/Rust.Dockerfile b/vendor/Dockerfile/Rust.Dockerfile
new file mode 100644
index 00000000000..d066d9f6cf6
--- /dev/null
+++ b/vendor/Dockerfile/Rust.Dockerfile
@@ -0,0 +1,13 @@
+FROM rust:1.45 as builder
+
+WORKDIR /usr/src/app
+
+COPY . .
+RUN cargo build --release
+
+FROM debian:buster-slim
+
+COPY --from=builder /usr/src/app/target/release/app .
+
+EXPOSE 8080
+CMD ["./app"]