summaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
authorJesse Morgan <jesse@jesterpm.net>2020-09-19 15:15:10 -0700
committerJesse Morgan <jesse@jesterpm.net>2020-09-19 18:15:16 -0700
commite07af7c02fc8a79fd3a7bf2cffc72bf3a57064eb (patch)
treefc6d17fcede9fd2d57ec55bd2b35d1dfe19a96a0 /Dockerfile
parent49fead40e3c7df69a652e4f03d39339a65a458e1 (diff)
Fetch files from S3 directly.
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile
index 2bb732f..c8e40d2 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -10,7 +10,7 @@ WORKDIR /usr/src
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 .
+#RUN cargo install --path .
# Copy the source and build the application.
COPY src ./src