File tree Expand file tree Collapse file tree 1 file changed +4
-8
lines changed Expand file tree Collapse file tree 1 file changed +4
-8
lines changed Original file line number Diff line number Diff line change 1
- FROM alpine:3.17.3
1
+ FROM alpine:3.18.4
2
2
3
3
# Installs shell related tools
4
4
RUN apk --no-cache add sudo tini shadow bash \
5
5
# Installs compatibility libs
6
6
gcompat libc6-compat libgcc libstdc++ \
7
7
# Installs some basic tools
8
- git curl socat openssh-client nano unzip brotli zstd xz
8
+ git curl socat openssh-client nano unzip brotli zstd xz \
9
+ # Installs node and npm
10
+ nodejs npm
9
11
10
- # Installs "older" node-16 and npm-8
11
- # Hack: to install such versions, we use repository from previous Alpine (3.16)
12
- RUN sed -i 's/17/16/g' /etc/apk/repositories && \
13
- apk --no-cache add nodejs=16.19.1-r0 npm=8.10.0-r0 && \
14
- sed -i 's/16/17/g' /etc/apk/repositories
15
-
16
12
ARG USERNAME=coder
17
13
ARG USER_UID=1000
18
14
ARG USER_GID=$USER_UID
You can’t perform that action at this time.
0 commit comments