mirror of
https://github.com/metrico/qryn.git
synced 2025-03-14 10:07:18 +00:00
16 lines
166 B
Docker
16 lines
166 B
Docker
# cLoki
|
|
FROM node:14-slim
|
|
|
|
# BUILD FORCE
|
|
ENV BUILD 703030
|
|
ENV PORT 3100
|
|
|
|
COPY . /app
|
|
WORKDIR /app
|
|
RUN npm install
|
|
|
|
# Expose Ports
|
|
EXPOSE 3100
|
|
|
|
CMD [ "npm", "start" ]
|