mirror of
https://github.com/itzg/docker-minecraft-server.git
synced 2024-06-07 19:40:43 +00:00
14 lines
250 B
Docker
14 lines
250 B
Docker
|
FROM itzg/ubuntu-openjdk-7
|
||
|
|
||
|
MAINTAINER itzg
|
||
|
|
||
|
RUN DEBIAN_FRONTEND=noninteractive apt-get -y install curl && apt-get clean
|
||
|
|
||
|
ADD download-and-start.sh /download-and-start
|
||
|
|
||
|
ENV JENKINS_HOME /data
|
||
|
VOLUME ["/data"]
|
||
|
EXPOSE 8080
|
||
|
|
||
|
CMD ["/download-and-start"]
|