Nathan Woodburn
98acc8543c
All checks were successful
Build Docker / BuildImage (push) Successful in 1m11s
17 lines
327 B
Docker
17 lines
327 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 \
|
|
python3 -m pip install -r requirements.txt
|
|
|
|
COPY . /app
|
|
|
|
# Add mount point for data volume
|
|
# VOLUME /data
|
|
|
|
ENTRYPOINT ["python3"]
|
|
CMD ["main.py"]
|
|
|
|
FROM builder as dev-envs |