hip02-resolver/Dockerfile

17 lines
319 B
Docker
Raw Permalink Normal View History

2023-11-09 21:59:11 +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
2023-11-09 22:03:08 +11:00
# Install curl
2023-11-09 22:32:50 +11:00
RUN apk add --update curl openssl
2023-11-09 22:03:08 +11:00
2023-11-09 21:59:11 +11:00
ENTRYPOINT ["python3"]
CMD ["server.py"]
FROM builder as dev-envs