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 22:05:49 +01:00

12 lines
196 B
Docker

# syntax=docker/dockerfile:1.4
FROM python:3.10-alpine
WORKDIR /app
COPY src/requirements.txt /app
RUN pip3 install -r requirements.txt
COPY src /app
ENTRYPOINT [ "python3" ]
CMD [ "app.py" ]