37 lines
901 B
Docker
37 lines
901 B
Docker
FROM node:15.3.0-alpine3.10
|
|
|
|
WORKDIR /root
|
|
|
|
RUN apk add --no-cache postgresql bash
|
|
|
|
ARG NPM_REPOSITORY=${NPM_REPOSITORY:-https://registry.npmjs.org}
|
|
RUN npm config set snyk=false
|
|
#RUN npm config set registry={NPM_REPOSITORY}
|
|
RUN npm config set registry=${NPM_REPOSITORY}
|
|
|
|
# copy the dependencies
|
|
COPY package.json package-lock.json ./
|
|
RUN --mount=type=cache,mode=0755,target=/root/.npm \
|
|
npm set cache /root/.npm && \
|
|
npm cache verify && \
|
|
npm ci --verbose
|
|
|
|
COPY webpack.config.js ./
|
|
COPY tsconfig.json ./
|
|
## required to build the cic-client-meta module
|
|
COPY . .
|
|
COPY tests/*.asc /root/pgp/
|
|
|
|
|
|
## copy runtime configs
|
|
COPY .config/ /usr/local/etc/cic-meta/
|
|
#
|
|
## db migrations
|
|
COPY docker/db.sh ./db.sh
|
|
RUN chmod 755 ./db.sh
|
|
#
|
|
RUN alias tsc=node_modules/typescript/bin/tsc
|
|
COPY docker/start_server.sh ./start_server.sh
|
|
RUN chmod 755 ./start_server.sh
|
|
ENTRYPOINT ["sh", "./start_server.sh"]
|