docker-images/Dockerfile
MissFox0810 6e0f62258e
Add libgdiplus package
add libgdiplus to the apt install, to fix issues with certain uMod plugins that require it for image manulption.
2019-01-04 11:13:01 +00:00

23 lines
572 B
Docker

FROM ubuntu:16.04
MAINTAINER Isaac A., <isaac@isaacs.site>
RUN apt update \
&& apt upgrade -y \
&& apt install -y lib32gcc1 lib32stdc++6 unzip curl iproute2 libgdiplus \
&& curl -sL https://deb.nodesource.com/setup_6.x | bash - \
&& apt install -y nodejs \
&& mkdir /node_modules \
&& npm install --prefix / ws \
&& useradd -d /home/container -m container
USER container
ENV USER=container HOME=/home/container
WORKDIR /home/container
COPY ./entrypoint.sh /entrypoint.sh
COPY ./wrapper.js /wrapper.js
CMD ["/bin/bash", "/entrypoint.sh"]