Skip to content
This repository has been archived by the owner on Sep 26, 2019. It is now read-only.

reverting change to dockerfile #1594

Merged
merged 1 commit into from
Jun 21, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
FROM openjdk:11.0.2-jre-slim-stretch

COPY pantheon /opt/pantheon/
COPY pantheon-*.tar.gz /tmp/.
RUN tar xzf /tmp/pantheon-*.tar.gz -C /tmp && \
rm /tmp/pantheon-*.tar.gz && \
mv /tmp/pantheon-* /opt/pantheon


RUN mkdir /var/lib/pantheon
RUN mkdir /etc/pantheon/
Expand Down