2024-01-29 15:22:39 +11:00
|
|
|
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
|
|
|
|
|
|
|
|
# Add mount point for data volume
|
|
|
|
# VOLUME /data
|
2025-01-28 17:33:14 +11:00
|
|
|
RUN apk add git
|
2024-01-29 15:22:39 +11:00
|
|
|
|
|
|
|
ENTRYPOINT ["python3"]
|
|
|
|
CMD ["server.py"]
|
|
|
|
|
|
|
|
FROM builder as dev-envs
|