Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

  • I am chr-fritz on github.
  • I am chrfritz (https://keybase.io/chrfritz) on keybase.
  • I have a public key ASCHvfFNWAFcYfEWgcPXq8OtRhFkJyhWCJmgbQYFqbRldAo

To claim this, I am signing this object:

@chr-fritz
chr-fritz / Dockerfile
Created September 19, 2017 19:41
esh/dockerfile
FROM openjdk:8-jre-alpine
ENV DEBUG_PORT=5005 HTTPS_PORT=8443 HTTP_PORT=8080
WORKDIR /opt/esh/runtime/concierge
ADD /target/smarthome-packaging-sample-*.zip /tmp/
RUN apk add --update unzip \
&& mkdir -p /opt/esh/conf/services \
&& unzip /tmp/smarthome-packaging-sample-*.zip -d /opt/esh \
&& chmod +x /opt/esh/runtime/concierge/start.sh \