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