Skip to content

Commit

Permalink
build configuration related change
Browse files Browse the repository at this point in the history
  • Loading branch information
aaron-kumar committed Aug 26, 2023
1 parent e23ab36 commit 3345c7f
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 47 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
with:
builder: ${{ steps.buildx.outputs.name }}
context: ./
file: ./Dockerfile-Java-11
file: ./Dockerfile
platforms: linux/amd64,linux/arm64/v8
push: true
tags: norstella/oxalis:6.0.0-latest-java11
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
with:
builder: ${{ steps.buildx.outputs.name }}
context: ./
file: ./Dockerfile-Java-11
file: ./Dockerfile
platforms: linux/amd64,linux/arm64/v8
push: true
tags: norstella/oxalis:6.0.0
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM maven:3.3.9-jdk-8 AS mvn
FROM maven:3.8.6-jdk-11 AS mvn

ADD . $MAVEN_HOME

Expand Down Expand Up @@ -26,7 +26,7 @@ RUN cd $MAVEN_HOME \
&& find /oxalis -name .gitkeep -exec rm -rf '{}' \;


FROM openjdk:8u212-jre-alpine3.9 as oxalis-base
FROM openjdk:11.0.16-jre as oxalis-base

COPY --from=mvn /oxalis /oxalis

Expand Down
43 changes: 0 additions & 43 deletions Dockerfile-Java-11

This file was deleted.

0 comments on commit 3345c7f

Please sign in to comment.