31 lines
929 B
Docker
31 lines
929 B
Docker
FROM node:current-buster-slim
|
|
|
|
# Install packages
|
|
RUN apt-get update \
|
|
&& apt-get install -y wget supervisor gnupg \
|
|
&& wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add - \
|
|
&& sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list' \
|
|
&& apt-get update \
|
|
&& apt-get install -y google-chrome-stable fonts-ipafont-gothic fonts-wqy-zenhei fonts-thai-tlwg fonts-kacst fonts-freefont-ttf libxss1 libxshmfence-dev \
|
|
--no-install-recommends \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
# Setup app
|
|
RUN mkdir -p /app
|
|
|
|
# Add application
|
|
WORKDIR /app
|
|
COPY challenge .
|
|
|
|
# Install dependencies
|
|
RUN yarn
|
|
|
|
# Setup superivsord
|
|
COPY config/supervisord.conf /etc/supervisord.conf
|
|
|
|
# Expose the port node-js is reachable on
|
|
EXPOSE 1337
|
|
|
|
# Start the node-js application
|
|
CMD ["/usr/bin/supervisord", "-c", "/etc/supervisord.conf"]
|