0
0
Fork 0
mirror of https://github.com/selfhst/icons.git synced 2025-05-06 15:49:29 +02:00
icons/build/dockerfile
2025-04-30 07:59:33 -04:00

11 lines
No EOL
128 B
Text
Executable file

FROM node:18-alpine
WORKDIR /app
COPY package.json ./
RUN npm install
COPY server.js .
EXPOSE 4050
CMD ["node", "server.js"]