This repository has been archived on 2024-04-25. You can view files and clone it, but cannot push or open issues or pull requests.
python-azure-example/Dockerfile

13 lines
192 B
Text
Raw Normal View History

2024-03-01 14:11:34 +00:00
# syntax=docker/dockerfile:1.4
FROM python:3.10-alpine
WORKDIR /app
COPY requirements.txt /app
RUN pip3 install -r requirements.txt
COPY src /app
ENTRYPOINT [ "python3" ]
CMD [ "app.py" ]