mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2025-02-09 15:27:11 +00:00
![Dima Lazerka](/assets/img/avatar_default.png)
Signed-off-by: hagen1778 <roman@victoriametrics.com> Co-authored-by: Dzmitry Lazerka <dlazerka@gmail.com> Co-authored-by: hagen1778 <roman@victoriametrics.com>
11 lines
356 B
Text
11 lines
356 B
Text
FROM node:20-alpine3.19
|
|
|
|
# Sets a custom location for the npm cache, preventing access errors in system directories
|
|
ENV NPM_CONFIG_CACHE=/build/.npm
|
|
|
|
RUN apk update && \
|
|
apk upgrade && \
|
|
apk add --no-cache bash bash-doc bash-completion libtool autoconf automake nasm pkgconfig libpng gcc make g++ zlib-dev gawk && \
|
|
mkdir -p /app
|
|
|
|
WORKDIR /app
|