Merge pull request #10 from Exonical/nodejs

Fix Maintainer Deprecation
This commit is contained in:
Michael (Parker) Parker 2018-07-13 18:50:36 -04:00 committed by GitHub
commit baa506f4d9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -5,7 +5,7 @@
# ---------------------------------- # ----------------------------------
FROM node:8.9-alpine FROM node:8.9-alpine
MAINTAINER Pterodactyl Software, <support@pterodactyl.io> LABEL author="Pterodactyl Software" maintainer="support@pterodactyl.io"
RUN adduser -D -h /home/container container RUN adduser -D -h /home/container container
@ -13,5 +13,5 @@ USER container
ENV USER=container HOME=/home/container ENV USER=container HOME=/home/container
WORKDIR /home/container WORKDIR /home/container
COPY ./entrypoint.sh /entrypoint.sh COPY ./entrypoint.sh /entrypoint.sh
CMD ["/bin/ash", "/entrypoint.sh"] CMD ["/bin/ash", "/entrypoint.sh"]