Skip to content

Commit

Permalink
Updating build scripts for docker images
Browse files Browse the repository at this point in the history
  • Loading branch information
atooni committed Jan 10, 2021
1 parent 5359ff1 commit 3742d38
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions base-alpine/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,8 @@ RUN apk --no-cache add \
ca-certificates \
bash

RUN apk --no-cache add tar

RUN mkdir -p /home/$USER
RUN apk --no-cache add tar \
&& mkdir -p /home/$USER

RUN addgroup -g "${GID}" "${USER}" \
&& adduser \
Expand All @@ -31,4 +30,5 @@ RUN addgroup -g "${GID}" "${USER}" \
--no-create-home \
--uid "$UID" \
"$USER" \
&& adduser $USER root \
&& chown -R $USER:$GROUP /home/$USER
6 changes: 3 additions & 3 deletions zulu-8-alpine/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# The basic image to run Blended containers
FROM atooni/base-alpine:1.0.1
FROM blended/base-alpine:1.0.2

LABEL maintainer="Blended Development Team"

ENV JAVA_URL=https://cdn.azul.com/zulu/bin/zulu8.38.0.13-ca-jdk8.0.212-linux_musl_x64.tar.gz
ENV SBT_URL=https://piccolo.link/sbt-1.2.8.tgz
ENV JAVA_URL=https://cdn.azul.com/zulu/bin/zulu8.50.0.51-ca-jdk8.0.275-linux_musl_x64.tar.gz
ENV SBT_URL=https://github.com/sbt/sbt/releases/download/v1.4.5/sbt-1.4.5.tgz

# Installation section
ADD files/profile.d /etc/profile.d
Expand Down

0 comments on commit 3742d38

Please sign in to comment.