Set path in docker image (#1838)

This commit is contained in:
Bernhard Elsner 2019-06-24 14:01:29 +02:00 committed by GitHub
parent ee3b62c380
commit 1000d6fab8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -144,6 +144,7 @@ jobs:
echo "FROM openjdk:8u212-alpine" >> Dockerfile
echo "RUN apk add curl bash" >> Dockerfile
echo "RUN curl https://get.daml.com | sh -s ${version#v}" >> Dockerfile
echo "ENV PATH="~/.daml/bin:${PATH}" >> Dockerfile
docker build -t digitalasset/daml-sdk:${version#v} .
docker push digitalasset/daml-sdk:${version#v}
cd "$DIR"