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
2024-03-01 15:11:34 +01:00

12 lines
192 B
Docker

# 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" ]