Files
TaskPool/Dockerfile
T
admin c3e834a2b4
Build and Deploy / build (push) Failing after 10s
Build and Deploy / docker (push) Has been skipped
Build and Deploy / deploy (push) Has been skipped
fix: remove duplicate endpoints.ts, fix Login imports
- Remove web/src/api/endpoints.ts (redundant with index.ts)
- Fix Login.tsx to use useLogin hook
- Simplify Dockerfile (use CI-built artifacts)
2026-07-20 20:00:41 +00:00

12 lines
276 B
Docker

# Production stage - only needs nginx and built files
FROM nginx:alpine
# Copy built files (from CI artifact or local build)
COPY web/dist /usr/share/nginx/html
# Copy nginx config
COPY nginx.conf /etc/nginx/conf.d/default.conf
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]