* feat(chalice): upgrades & refacotered image * feat(alerts): upgrades & refacotered image * feat(crons): upgrades & refacotered image * feat(crons): changed build script * feat(alerts): changed build script * feat(crons): changed Dockerfile * feat(alerts): changed shell interpreter * feat(chalice): changed shell interpreter * feat(crons): changed shell interpreter * feat(alerts): changed Dockerfile * feat(chalice): changed Dockerfile * feat(crons): changed Dockerfile * feat(chalice): include tenant_key * feat(chalice): less imports
15 lines
No EOL
395 B
Docker
15 lines
No EOL
395 B
Docker
FROM node:18-alpine
|
|
LABEL Maintainer="KRAIEM Taha Yassine<tahayk2@gmail.com>"
|
|
RUN apk add --no-cache tini
|
|
ARG envarg
|
|
ENV ENTERPRISE_BUILD=${envarg} \
|
|
MAXMINDDB_FILE=/root/geoip.mmdb
|
|
|
|
WORKDIR /work
|
|
ADD https://static.openreplay.com/geoip/GeoLite2-Country.mmdb $MAXMINDDB_FILE
|
|
COPY package.json .
|
|
COPY package-lock.json .
|
|
RUN npm install
|
|
COPY . .
|
|
ENTRYPOINT ["/sbin/tini", "--"]
|
|
CMD npm start |