blob: eb5b071883cf4457779fd6db8096db5984435b8e [file] [log] [blame]
FROM golang:1.11.2
RUN apt-get update && apt-get install -y \
curl \
jq \
git \
realpath \
&& rm -rf /var/lib/apt/lists/*
RUN mkdir /action
WORKDIR /action
ADD proxy /bin/proxy
ADD gobuild.py /bin/compile
ADD gobuild.py.launcher.go /bin/compile.launcher.go
ENV OW_COMPILER=/bin/compile
ENTRYPOINT [ "/bin/proxy" ]