4
0
mirror of https://github.com/AzuraCast/AzuraCast.git synced 2024-06-18 15:07:05 +00:00
AzuraCast/util/docker/static/Dockerfile

21 lines
340 B
Docker
Raw Normal View History

FROM library/node:8-alpine
RUN apk update \
&& apk add bash
RUN mkdir -p /data \
&& chown -R node:node /data
RUN yarn global add gulp
COPY build_entrypoint.sh /
RUN chmod a+x /build_entrypoint.sh
2017-09-19 10:19:14 +00:00
# Define working directory.
WORKDIR /data
2017-09-19 10:19:14 +00:00
# Define working user.
USER node
# Define default command.
CMD ["/build_entrypoint.sh"]