mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-23 20:37:12 +01:00
11 lines
340 B
Plaintext
11 lines
340 B
Plaintext
FROM node:18-alpine3.17
|
|
|
|
# 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
|
|
RUN apk add --no-cache bash bash-doc bash-completion libtool autoconf automake nasm pkgconfig libpng gcc make g++ zlib-dev gawk
|
|
|
|
RUN mkdir -p /app
|
|
WORKDIR /app
|