mirror of
https://github.com/bcye/structured-wikivoyage-exports.git
synced 2025-05-13 03:30:19 +00:00
13 lines
194 B
Docker
13 lines
194 B
Docker
FROM node:22
|
|
|
|
WORKDIR /app
|
|
|
|
COPY package.json .
|
|
COPY package-lock.json .
|
|
|
|
RUN npm install
|
|
|
|
COPY index.ts .
|
|
|
|
CMD [ "node", "--max-old-space-size=4096", "--experimental-strip-types", "index.ts" ]
|