mirror of
https://github.com/vimagick/dockerfiles.git
synced 2025-01-08 04:04:18 +02:00
25 lines
509 B
Docker
25 lines
509 B
Docker
#
|
|
# Dockerfile for presto
|
|
#
|
|
|
|
FROM java:8-jre-alpine
|
|
MAINTAINER kev <noreply@easypi.pro>
|
|
|
|
ENV PRESTO_VERSION 0.208
|
|
ENV PRESTO_URL https://repo1.maven.org/maven2/com/facebook/presto/presto-server/$PRESTO_VERSION/presto-server-$PRESTO_VERSION.tar.gz
|
|
ENV PRESTO_HOME /opt/presto
|
|
|
|
WORKDIR $PRESTO_HOME
|
|
|
|
RUN set -xe \
|
|
&& apk add --no-cache curl tar \
|
|
&& curl -sSL $PRESTO_URL | tar xz --strip 1 \
|
|
&& apk del curl tar
|
|
|
|
VOLUME /var/presto/data
|
|
|
|
EXPOSE 8080 8081
|
|
|
|
ENTRYPOINT ["./bin/launcher"]
|
|
CMD ["run"]
|