chore: add Docker deployment for Athena and Hermes

This commit is contained in:
admin.schubert 2026-07-02 12:16:32 +00:00
parent 4cf671e32d
commit 70fd9a7f28
4 changed files with 41 additions and 27 deletions

View file

@ -0,0 +1,14 @@
FROM node:22-alpine
WORKDIR /app
COPY package*.json ./
RUN npm ci
COPY . .
RUN npm run build
EXPOSE 3000
CMD ["npm", "run", "start"]