X Tutup
ARG PYTHON_FLAVOR=alpine FROM python:3.12-${PYTHON_FLAVOR} AS build WORKDIR /opt/python-gitlab COPY . . RUN pip install --no-cache-dir build && python -m build --wheel FROM python:3.12-${PYTHON_FLAVOR} LABEL org.opencontainers.image.source="https://github.com/python-gitlab/python-gitlab" WORKDIR /opt/python-gitlab COPY --from=build /opt/python-gitlab/dist dist/ RUN pip install --no-cache-dir PyYaml RUN pip install --no-cache-dir $(find dist -name *.whl) && \ rm -rf dist/ ENTRYPOINT ["gitlab"] CMD ["--version"]
X Tutup