mirror of
https://github.com/itzg/docker-minecraft-server
synced 2024-12-14 14:22:27 +00:00
13 lines
250 B
Docker
13 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"]
|