This repository has been archived on 2025-06-06. You can view files and clone it, but cannot push or open issues or pull requests.
Currency-parser/Dockerfile

13 lines
140 B
Docker

FROM node:20-alpine
WORKDIR /
COPY /package*.json .
RUN npm install
COPY /node_modules /node_modules
COPY . .
CMD ["node", "main.js"]