uikit/Dockerfile
Mohamadzadeh afdedd1216
All checks were successful
Build and Deploy Next.js + Nginx Docker Image / build-and-deploy (push) Successful in 49s
Build and Deploy Next.js + Nginx Docker Image / deploy (push) Successful in 7s
disable CORS error
2026-07-09 16:33:43 +03:30

10 lines
227 B
Docker

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