mirror of
https://github.com/cappuccino/cappuccino.git
synced 2026-08-25 04:57:03 +00:00
11 lines
266 B
Docker
11 lines
266 B
Docker
FROM ubuntu:18.04
|
|
|
|
RUN apt-get update && apt-get install -y \
|
|
curl \
|
|
default-jre \
|
|
unzip
|
|
|
|
ADD bootstrap.sh /tmp/cappuccino_bootstrap.sh
|
|
|
|
RUN chmod a+x /tmp/cappuccino_bootstrap.sh && /tmp/cappuccino_bootstrap.sh --noprompt --directory /usr/local/narwhal
|