-
Notifications
You must be signed in to change notification settings - Fork 235
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove .gitlab-ci file, update Dockerfile to match changes made in ma…
…ster
- Loading branch information
1 parent
5f5d38a
commit e01852f
Showing
2 changed files
with
1 addition
and
53 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -3,13 +3,11 @@ FROM maven:3.6.3-jdk-11-slim as s3proxy-builder | |
LABEL maintainer="Andrew Gaul <[email protected]>" | ||
|
||
COPY . /opt/s3proxy/ | ||
RUN mkdir /home/.m2 | ||
WORKDIR /opt/s3proxy | ||
USER root | ||
RUN mvn package -DskipTests | ||
|
||
# Multistage - Image | ||
FROM adoptopenjdk/openjdk11:jdk-11.0.11_9-alpine | ||
FROM openjdk:11-jre-slim | ||
LABEL maintainer="Andrew Gaul <[email protected]>" | ||
|
||
WORKDIR /opt/s3proxy | ||
|