summaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
authorJesse Morgan <jesse@jesterpm.net>2020-09-13 15:48:17 -0700
committerJesse Morgan <jesse@jesterpm.net>2020-09-13 15:48:17 -0700
commit001d2d3dccafea7b368cd6545a5a0b000a84ee76 (patch)
tree557783ec4afb7c773ae8f530ebadb8edec759792 /Dockerfile
parent84f26898b3e3ebdd3b7192cfecb1e99d11eae3ff (diff)
Add Dockerfile
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile25
1 files changed, 25 insertions, 0 deletions
diff --git a/Dockerfile b/Dockerfile
new file mode 100644
index 0000000..2bb732f
--- /dev/null
+++ b/Dockerfile
@@ -0,0 +1,25 @@
+# Based on https://alexbrand.dev/post/how-to-package-rust-applications-into-minimal-docker-containers/
+FROM rust:1.46.0 AS build
+
+MAINTAINER Jesse Morgan <jesse@jesterpm.net>
+
+WORKDIR /usr/src
+
+# Build the dependencies first
+# This should help repeated builds go faster.
+RUN USER=root cargo new s3-media-endpoint-rs
+WORKDIR /usr/src/s3-media-endpoint-rs
+COPY Cargo.toml Cargo.lock ./
+RUN cargo install --path .
+
+# Copy the source and build the application.
+COPY src ./src
+RUN cargo install --path .
+
+# Now build the deployment image.
+FROM debian:buster-slim
+# RUN apt-get update && apt-get install -y extra-runtime-dependencies && rm -rf /var/lib/apt/lists/*
+RUN apt-get update && apt-get install -y libssl1.1 ca-certificates
+COPY --from=build /usr/local/cargo/bin/s3-media-endpoint-rs .
+USER 999
+CMD ["./s3-media-endpoint-rs"]