mirror of
https://github.com/karma-riuk/crab.git
synced 2025-07-04 13:18:13 +02:00
fixed docker files
This commit is contained in:
@ -1,4 +1,9 @@
|
|||||||
FROM gradle:jdk11-corretto
|
FROM gradle:7.5-jdk11
|
||||||
|
|
||||||
|
# Install dependencies
|
||||||
|
RUN apt-get update && \
|
||||||
|
apt-get install -y curl zip git && \
|
||||||
|
rm -rf /var/lib/apt/lists/*
|
||||||
|
|
||||||
# Install SDKMAN!
|
# Install SDKMAN!
|
||||||
RUN curl -s "https://get.sdkman.io" | bash
|
RUN curl -s "https://get.sdkman.io" | bash
|
||||||
|
@ -3,6 +3,11 @@ FROM maven:3.9.9-eclipse-temurin-11
|
|||||||
# Set Maven repository location
|
# Set Maven repository location
|
||||||
ENV MAVEN_CONFIG=/root/.m2
|
ENV MAVEN_CONFIG=/root/.m2
|
||||||
|
|
||||||
|
# Install dependencies
|
||||||
|
RUN apt-get update && \
|
||||||
|
apt-get install -y curl zip git && \
|
||||||
|
rm -rf /var/lib/apt/lists/*
|
||||||
|
|
||||||
# Install SDKMAN!
|
# Install SDKMAN!
|
||||||
RUN curl -s "https://get.sdkman.io" | bash
|
RUN curl -s "https://get.sdkman.io" | bash
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user