17 lines
321 B
Docker
17 lines
321 B
Docker
|
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 /app/data
|
||
|
|
||
|
ENTRYPOINT ["python3"]
|
||
|
CMD ["server.py"]
|
||
|
|
||
|
FROM builder as dev-envs
|