2025-08-18 13:53:27 +08:00
|
|
|
FROM python:latest
|
|
|
|
|
WORKDIR /app
|
2025-08-18 14:01:14 +08:00
|
|
|
COPY . .
|
2025-08-18 13:53:27 +08:00
|
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
|
RUN python setup.py install
|
2025-08-18 14:01:14 +08:00
|
|
|
|
|
|
|
|
CMD ["python", "alibabacloud_sample/main.py"]
|