You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- FROM gradle:8-jdk11-jammy
-
- WORKDIR /workdir
-
- RUN apt-get update && apt-get install -y python3-pip
-
- COPY resolve-deps.sh .
- COPY generate-gradle.py .
- COPY requirements.txt .
-
- RUN python3 -m pip install -r requirements.txt
-
- CMD [ "./resolve-deps.sh" ]
|