Skip to content

Commit a6e12cd

Browse files
committed
OLMIS-7568: Use alphine 3.12 as base image
1 parent 7456f5b commit a6e12cd

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM anapsix/alpine-java:8u202b08_jdk
1+
FROM alpine:3.12
22

33
WORKDIR /root
44

@@ -9,6 +9,7 @@ ENV GRADLE_OPTS -Dorg.gradle.daemon=true
99
RUN apk update && \
1010
apk add libstdc++ && \
1111
apk add bash && \
12+
apk add openjdk8 && \
1213
apk add postgresql-client && \
1314
apk add postgresql && \
1415
apk add nodejs-current-npm && \

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ Most interactions should occur through docker-compose.
5656
## Tech
5757

5858
- JDK 1.8+
59-
- Gradle 6.4+
59+
- Gradle 4.10+
6060
- Node 8+
6161
- PSQL 10+
6262
- RAML-Cop 5

install_gradle.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/sh
22

3-
wget -O gradle.zip https://services.gradle.org/distributions/gradle-6.4-bin.zip
3+
wget -O gradle.zip http://services.gradle.org/distributions/gradle-4.10.2-bin.zip
44
unzip gradle.zip
55
rm gradle.zip
6-
ln -s "$HOME/gradle-6.4/bin/gradle" /sbin/gradle
6+
ln -s "$HOME/gradle-4.10.2/bin/gradle" /sbin/gradle

0 commit comments

Comments
 (0)