Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit be94669

Browse filesBrowse files
author
Dylan Graham
committed
Install pip and setuptools
1 parent 91c2416 commit be94669
Copy full SHA for be94669

File tree

Expand file treeCollapse file tree

1 file changed

+7
-0
lines changed
Open diff view settings
Filter options
Expand file treeCollapse file tree

1 file changed

+7
-0
lines changed
Open diff view settings
Collapse file

‎Dockerfile‎

Copy file name to clipboardExpand all lines: Dockerfile
+7Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,18 @@
11
FROM google/cloud-sdk:224.0.0-alpine AS build
22

3+
RUN apk add --update py-setuptools py-pip \
4+
&& rm -rf /var/cache/apk/* \
5+
&& pip install wheel
6+
37
WORKDIR /opt/python-gitlab
48
COPY . .
59
RUN python setup.py bdist_wheel
610

711
FROM google/cloud-sdk:224.0.0-alpine
812

13+
RUN apk add --update py-setuptools py-pip \
14+
&& rm -rf /var/cache/apk/*
15+
916
WORKDIR /opt/python-gitlab
1017
COPY --from=build /opt/python-gitlab/dist dist/
1118
RUN pip install $(find dist -name *.whl) && \

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.