43 lines
857 B
Docker
43 lines
857 B
Docker
FROM node:buster-slim
|
|
|
|
# Show all node logs
|
|
ENV NPM_CONFIG_LOGLEVEL warn
|
|
ENV NODE_ENV=production
|
|
|
|
WORKDIR /threetwo-import-service
|
|
|
|
RUN apt-get update \
|
|
&& apt-get upgrade -y \
|
|
&& apt-get install -y \
|
|
bash git openssh-server \
|
|
ca-certificates \
|
|
gcc \
|
|
libgl1-mesa-glx \
|
|
python3 python3-pip \
|
|
qtbase5-dev \
|
|
wget \
|
|
xdg-utils \
|
|
xz-utils \
|
|
libvips-dev build-essential
|
|
|
|
RUN wget -nv -O- https://download.calibre-ebook.com/linux-installer.sh | sh /dev/stdin install_dir=/opt isolated=y && \
|
|
rm -rf /tmp/calibre-installer-cache
|
|
|
|
COPY package.json package-lock.json ./
|
|
COPY moleculer.config.ts ./
|
|
COPY tsconfig.json ./
|
|
|
|
# Install Dependncies
|
|
RUN npm install -g typescript ts-node
|
|
RUN npm ci --silent
|
|
|
|
COPY . .
|
|
|
|
# Build and cleanup
|
|
RUN npm run build \
|
|
&& npm prune
|
|
|
|
|
|
EXPOSE 3000
|
|
# Start server
|
|
CMD ["npm", "start"] |