File tree 2 files changed +8
-1
lines changed
2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change 10
10
\.krew
11
11
\.sdkman
12
12
\.local/bin/podman
13
+
14
+ # Ignore files under .config directory
15
+ \.config
Original file line number Diff line number Diff line change 1
1
# syntax=docker/dockerfile:1.3-labs
2
2
3
3
# updateBaseImages.sh can't operate on SHA-based tags as they're not date-based or semver-sequential, and therefore cannot be ordered
4
- FROM quay.io/devfile/base-developer-image:ubi9-latest
4
+ # FROM quay.io/devfile/base-developer-image:ubi9-latest
5
+ FROM quay.io/cgruver0/che/base-developer-image:latest
5
6
6
7
LABEL maintainer="Red Hat, Inc."
7
8
414
415
RUN echo 'export SDKMAN_DIR="/home/tooling/.sdkman"' >> ${PROFILE_EXT}
415
416
RUN echo '[[ -s "$SDKMAN_DIR/bin/sdkman-init.sh" ]] && source "$SDKMAN_DIR/bin/sdkman-init.sh"' >> ${PROFILE_EXT}
416
417
418
+ # Create symbolic links from /home/tooling/ -> /home/user/
419
+ RUN stow . -t /home/user/ -d /home/tooling/ --no-folding
420
+
417
421
# Set permissions on /etc/passwd, /etc/group, /etc/pki and /home to allow arbitrary users to write
418
422
RUN chgrp -R 0 /home && chmod -R g=u /etc/passwd /etc/group /home /etc/pki
419
423
You can’t perform that action at this time.
0 commit comments