Initial commit — Aspekter VA email builder
Full project: Svelte 5 frontend, Vite 7 backend API, Pug email templates (email-gen), Docker deployment. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
14
deploy/email-gen-api/Dockerfile
Normal file
14
deploy/email-gen-api/Dockerfile
Normal file
@@ -0,0 +1,14 @@
|
||||
FROM node:20-alpine
|
||||
|
||||
WORKDIR /app
|
||||
COPY deploy/email-gen-api/server.js /app/server.js
|
||||
COPY deploy/email-gen-api/entrypoint.sh /app/entrypoint.sh
|
||||
RUN chmod +x /app/entrypoint.sh
|
||||
|
||||
# Copy email-gen templates into image
|
||||
COPY email-gen /workspace/email-gen
|
||||
RUN if [ -f /workspace/email-gen/package.json ]; then cd /workspace/email-gen && npm install; fi
|
||||
|
||||
EXPOSE 8787
|
||||
|
||||
CMD ["/app/entrypoint.sh"]
|
||||
Reference in New Issue
Block a user