sparkleman commited on
Commit
fda0968
·
1 Parent(s): 3793f15
Files changed (1) hide show
  1. Dockerfile +2 -8
Dockerfile CHANGED
@@ -1,13 +1,7 @@
1
  FROM node:20-alpine AS FrontendBuilder
2
- RUN apk add --no-cache libc6-compat
3
 
4
- RUN <<EOF
5
- apt update
6
- apt install --no-install-recommends -y \
7
- build-essential \
8
- git
9
- apt clean && rm -rf /var/lib/apt/lists/*
10
- EOF
11
 
12
  WORKDIR /app
13
 
 
1
  FROM node:20-alpine AS FrontendBuilder
 
2
 
3
+ RUN apk update && apk upgrade && \
4
+ apk add --no-cache bash git openssh
 
 
 
 
 
5
 
6
  WORKDIR /app
7