2024-12-10 19:47:02 +00:00
|
|
|
FROM node:slim
|
|
|
|
|
|
|
|
WORKDIR /usr/src/app
|
|
|
|
|
|
|
|
COPY package*.json ./
|
|
|
|
RUN npm install --omit=dev
|
2024-12-17 19:44:23 +00:00
|
|
|
# RUN npm install -g javascript-obfuscator
|
2024-12-10 19:47:02 +00:00
|
|
|
|
|
|
|
COPY index.js index.js
|
|
|
|
COPY utils.js utils.js
|
|
|
|
COPY prices.json prices.json
|
|
|
|
|
2024-12-17 19:44:23 +00:00
|
|
|
# RUN javascript-obfuscator index.js --output index.js
|
|
|
|
# RUN javascript-obfuscator utils.js --output utils.js
|
2024-12-10 19:47:02 +00:00
|
|
|
|
|
|
|
EXPOSE 3001
|
|
|
|
|
|
|
|
CMD ["node", "index.js"]
|