Skip to content

Commit ebdf2ba

Browse files
committed
try other docker build
1 parent 6bee08c commit ebdf2ba

File tree

2 files changed

+20
-2
lines changed

2 files changed

+20
-2
lines changed

.editorconfig

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
root = true
2+
3+
[*]
4+
indent_style = space
5+
end_of_line = lf
6+
charset = utf-8
7+
trim_trailing_whitespace = true
8+
insert_final_newline = true
9+
indent_size = 4
10+
11+
[{*.ats,*.cts,*.mts,*.ts}]
12+
ij_typescript_use_explicit_js_extension = true
13+
14+
[*.yml]
15+
indent_size = 2
16+
17+
[package.json]
18+
indent_size = 2

docker/Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ FROM node:lts-alpine
22
LABEL maintainer="thibaut severac <[email protected]>"
33

44
RUN apk upgrade && \
5-
apk add --no-cache python3 py3-pip make
5+
apk add --no-cache build-base python3 py3-pip make
66

77
RUN npm install -g npm && \
88
npm install -g pnpm
@@ -26,7 +26,7 @@ RUN cd /tmp/src && \
2626
RUN rm -Rf /tmp/src
2727
RUN pnpm install -P
2828

29-
RUN apk del python3 py3-pip make
29+
RUN apk del build-base python3 py3-pip make
3030

3131
#HEALTHCHECK --interval=1m --timeout=3s \
3232
# CMD yarn run healthCheck || exit 1

0 commit comments

Comments
 (0)