uikit/Dockerfile
Mohamadzadeh 56a365c6b4
All checks were successful
Build and Deploy Next.js + Nginx Docker Image / build-and-deploy (push) Successful in 50s
Build and Deploy Next.js + Nginx Docker Image / deploy (push) Successful in 7s
auto build
2026-07-09 13:34:48 +03:30

7 lines
172 B
Docker

FROM docker.ibagher.ir/python:3.11-slim
WORKDIR /app
COPY ./dist ./dist
CMD ["python3", "-m", "http.server", "--bind", "0.0.0.0", "8000", "--directory", "./dist/remote"]