Fixing build issues

master
Pauli Jokela 2017-04-23 00:24:17 +03:00 committed by GitHub
parent 13a080d2ef
commit 8d8747bf02
1 changed files with 4 additions and 7 deletions

View File

@ -2,15 +2,15 @@ FROM ubuntu:16.04
MAINTAINER didstopia
# Fixes apt-get warnings
ARG DEBIAN_FRONTEND=noninteractive
# Setup the locales
RUN locale-gen en_US.UTF-8
RUN apt-get clean && apt-get update && apt-get install -y apt-utils locales && locale-gen en_US.UTF-8
ENV LANG en_US.UTF-8
ENV LANGUAGE en_US:en
ENV LC_ALL en_US.UTF-8
# Fixes apt-get warnings
ENV DEBIAN_FRONTEND noninteractive
# Run a quick apt-get update/upgrade
RUN apt-get update && apt-get upgrade -y && apt-get dist-upgrade -y && apt-get autoremove -y
@ -48,8 +48,5 @@ EXPOSE 21025/tcp
ENV STEAM_USERNAME ""
ENV STEAM_PASSWORD ""
# Cleanup
ENV DEBIAN_FRONTEND newt
# Start the server
ENTRYPOINT ["./start.sh"]