linkr/Dockerfile

14 lines
269 B
Docker
Raw Normal View History

2023-11-17 00:06:02 +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
ENTRYPOINT ["python3"]
CMD ["server.py"]
FROM builder as dev-envs