-
Notifications
You must be signed in to change notification settings - Fork 233
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
59094ba
commit 46704a6
Showing
7 changed files
with
724 additions
and
1 deletion.
There are no files selected for viewing
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,3 +1,12 @@ | ||
# Multistage - Builder | ||
FROM maven:3.6.3-jdk-11-slim as s3proxy-builder | ||
LABEL maintainer="Andrew Gaul <[email protected]>" | ||
|
||
COPY . /opt/s3proxy/ | ||
WORKDIR /opt/s3proxy | ||
RUN mvn package -DskipTests | ||
|
||
# Multistage - Image | ||
FROM openjdk:11-jre-slim | ||
LABEL maintainer="Andrew Gaul <[email protected]>" | ||
|
||
|
@@ -20,6 +29,9 @@ ENV \ | |
S3PROXY_CORS_ALLOW_METHODS="" \ | ||
S3PROXY_CORS_ALLOW_HEADERS="" \ | ||
S3PROXY_IGNORE_UNKNOWN_HEADERS="false" \ | ||
S3PROXY_OVERLAY_BLOBSTORE="false" \ | ||
S3PROXY_OVERLAY_BLOBSTORE_MASK_SUFFIX="__deleted" \ | ||
S3PROXY_OVERLAY_BLOBSTORE_PATH="/tmp" \ | ||
S3PROXY_ENCRYPTED_BLOBSTORE="" \ | ||
S3PROXY_ENCRYPTED_BLOBSTORE_PASSWORD="" \ | ||
S3PROXY_ENCRYPTED_BLOBSTORE_SALT="" \ | ||
|
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
Oops, something went wrong.