Icon updates

This commit is contained in:
selfhst-bot
2025-04-30 07:59:33 -04:00
parent aa388af810
commit 1bbae842c0
19 changed files with 202 additions and 3 deletions
+11
View File
@@ -0,0 +1,11 @@
FROM node:18-alpine
WORKDIR /app
COPY package.json ./
RUN npm install
COPY server.js .
EXPOSE 4050
CMD ["node", "server.js"]