File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 1
- FROM maven:3-eclipse-temurin-17-alpine AS build-licensee
1
+ FROM docker.io/library/ maven:3-eclipse-temurin-17-alpine AS build-licensee
2
2
3
3
RUN apk add --update \
4
4
alpine-sdk \
@@ -10,7 +10,7 @@ RUN apk add --update \
10
10
RUN gem install licensee
11
11
12
12
13
- FROM maven:3-eclipse-temurin-17-alpine
13
+ FROM docker.io/library/ maven:3-eclipse-temurin-17-alpine
14
14
MAINTAINER Stian Soiland-Reyes <
[email protected] >
15
15
16
16
# Build-time metadata as defined at https://github.com/opencontainers/image-spec/blob/main/annotations.md
@@ -29,8 +29,8 @@ LABEL org.opencontainers.image.created=$BUILD_DATE \
29
29
RUN apk add --update \
30
30
graphviz \
31
31
ttf-freefont \
32
- py3-pip \
33
32
gcc \
33
+ pipx \
34
34
python3-dev \
35
35
libc-dev \
36
36
nodejs \
@@ -43,9 +43,9 @@ RUN apk add --update \
43
43
heimdal \
44
44
&& rm -rf /var/cache/apk/*
45
45
46
- # wheel needed by ruamel.yaml for some reason
47
- RUN pip3 install -U wheel setuptools pip
48
- RUN pip3 install cwltool
46
+ ENV PATH= "/root/.local/bin:${PATH}"
47
+
48
+ RUN pipx install cwltool
49
49
50
50
RUN cwltool --version
51
51
You can’t perform that action at this time.
0 commit comments