mirror of
https://github.com/metrico/qryn.git
synced 2025-03-14 10:07:18 +00:00
* Update to latest Loki API * Extend new label value API * placeholder for series query * resync * adjust fields * change response type * change response type * resync * working new api
16 lines
161 B
Docker
16 lines
161 B
Docker
# cLoki
|
|
FROM node:10
|
|
|
|
# BUILD FORCE
|
|
ENV BUILD 703024
|
|
ENV PORT 3100
|
|
|
|
COPY . /app
|
|
WORKDIR /app
|
|
RUN npm install
|
|
|
|
# Expose Ports
|
|
EXPOSE 3100
|
|
|
|
CMD [ "npm", "start" ]
|