mirror of
https://github.com/itzg/docker-minecraft-server.git
synced 2024-06-07 19:40:43 +00:00
14 lines
256 B
Docker
14 lines
256 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 38252
|
|
|
|
CMD ["/download-and-start"]
|