7 lines
185 B
Plaintext
7 lines
185 B
Plaintext
|
|
FROM python:latest
|
||
|
|
WORKDIR /app
|
||
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
||
|
|
RUN python setup.py install
|
||
|
|
COPY . /app
|
||
|
|
EXPOSE 5555
|
||
|
|
CMD ["python", "/app/alibabacloud_sample/main.py"]
|