[Fix] DockerHub build error

This commit is contained in:
hugome 2016-05-04 03:45:09 +02:00
parent bbf7db9fd3
commit 7fc071ce73

View file

@ -1,15 +1,15 @@
############################################### ###############################################
# Ubuntu with added Teamspeak 3 Server. # Ubuntu with added Teamspeak 3 Server.
# Uses SQLite Database on default. # Uses SQLite Database on default.
############################################### ###############################################
# Using latest Ubuntu image as base # Using latest Ubuntu image as base
FROM ubuntu FROM ubuntu:16.04
MAINTAINER Alex MAINTAINER Alex
RUN apt-get update \ RUN apt-get update \
&& apt-get install -y wget --no-install-recommends \ && apt-get install -y wget bzip2 --no-install-recommends \
&& rm -r /var/lib/apt/lists/* && rm -r /var/lib/apt/lists/*
## Set some variables for override. ## Set some variables for override.
@ -35,6 +35,6 @@ ENTRYPOINT ["/opt/scripts/docker-ts3.sh"]
# Expose the Standard TS3 port. # Expose the Standard TS3 port.
EXPOSE 9987/udp EXPOSE 9987/udp
# for files # for files
EXPOSE 30033 EXPOSE 30033
# for ServerQuery # for ServerQuery
EXPOSE 10011 EXPOSE 10011