2023-11-07 23:04:54 +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
|
|
|
|
|
|
|
|
ENTRYPOINT ["python3"]
|
2023-11-08 12:48:17 +11:00
|
|
|
CMD ["server.py"]
|
2023-11-07 23:04:54 +11:00
|
|
|
|
|
|
|
FROM builder as dev-envs
|