blob: 6663cac5d2fa42ac60d724991ebb1c7872c806df (
plain)
1
2
3
4
5
6
7
8
9
10
|
FROM python:slim
# Install python-gitlab
RUN pip install --upgrade python-gitlab
# Copy sample configuration file
COPY python-gitlab.cfg /
# Define the entrypoint that enable a configuration file
ENTRYPOINT ["gitlab", "--config-file", "/python-gitlab.cfg"]
|