commit 40e5ced7348bd3d53f6a771d34815b62e175841b Author: CHIEFSOFT\ameye Date: Sun Feb 2 22:04:47 2025 -0500 first commit diff --git a/app/Dockerfile b/app/Dockerfile new file mode 100644 index 0000000..10e9003 --- /dev/null +++ b/app/Dockerfile @@ -0,0 +1,28 @@ +# syntax=docker/dockerfile:1.4 +FROM --platform=$BUILDPLATFORM python:3.10-alpine AS builder + +WORKDIR /app + +COPY requirements.txt /app +RUN --mount=type=cache,target=/root/.cache/pip \ + pip3 install -r requirements.txt + +COPY . /app + + +ENTRYPOINT ["python3"] +CMD ["app.py"] + +FROM builder as dev-envs + +RUN <