You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
309 B
Docker
14 lines
309 B
Docker
FROM node:8.10
|
|
|
|
# Set a timezone
|
|
ENV TZ=UTC
|
|
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
|
|
|
|
COPY . .
|
|
RUN yarn install
|
|
RUN yarn run build
|
|
|
|
CMD node --max-old-space-size=8096 dist
|
|
|
|
HEALTHCHECK --interval=5s --timeout=30s --retries=50 \
|
|
CMD curl -f localhost:8082/api/ || exit 1 |