File tree 2 files changed +5
-5
lines changed
examples/docker-image-builds/images
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 1
1
# From the base image (built on Docker host)
2
- FROM coder-base:latest
2
+ FROM coder-base:v0.1
3
3
4
4
# Install everything as root
5
5
USER root
@@ -54,4 +54,4 @@ RUN mkdir -p /usr/share/gradle /usr/share/gradle/ref \
54
54
ENV PATH $PATH:$GRADLE_HOME/bin
55
55
56
56
# Set back to coder user
57
- USER coder
57
+ USER coder
Original file line number Diff line number Diff line change 1
1
# Start from base image (built on Docker host)
2
- FROM coder-base:latest
2
+ FROM coder-base:v0.1
3
3
4
4
# Install everything as root
5
5
USER root
6
6
7
7
# Install Node
8
- RUN curl -sL https://deb.nodesource.com/setup_14 .x | bash -
8
+ RUN curl -sL https://deb.nodesource.com/setup_16 .x | bash -
9
9
RUN DEBIAN_FRONTEND="noninteractive" apt-get update -y && \
10
10
apt-get install -y nodejs
11
11
@@ -15,4 +15,4 @@ RUN echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources
15
15
RUN DEBIAN_FRONTEND="noninteractive" apt-get update && apt-get install -y yarn
16
16
17
17
# Set back to coder user
18
- USER coder
18
+ USER coder
You can’t perform that action at this time.
0 commit comments