daml/ci/docker/daml-sdk/Dockerfile
associahedron b7e6088bcd
Delete temp directory in get-daml.sh (#3233)
* Delete temp directory after get-daml.sh

* Revert dockerfile change from #3224
2019-10-18 17:02:02 +01:00

8 lines
205 B
Docker

FROM openjdk:8u212-alpine
RUN apk add curl bash
ARG VERSION
RUN addgroup -S daml && adduser -S daml -G daml
USER daml
RUN curl https://get.daml.com | sh -s $VERSION
ENV PATH="/home/daml/.daml/bin:${PATH}"