fantasticit / wipi

A blog system written by next.js, nest.js and MySQL.

Home Page:https://blog.codingit.cn/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

docker

fantasticit opened this issue · comments

FROM node:14

RUN apt-get update \
  && apt-get install -y wget gnupg \
  && wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add - \
  && sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list' \
  && apt-get update \
  && apt-get install -y google-chrome-stable fonts-ipafont-gothic fonts-wqy-zenhei fonts-thai-tlwg fonts-kacst fonts-freefont-ttf libxss1 \
    --no-install-recommends \
  && rm -rf /var/lib/apt/lists/*

WORKDIR /app
COPY / /
RUN chmod +x /start.sh


ENV PUPPETEER_SKIP_DOWNLOAD=true

# install global packages
RUN npm install -g yarn pm2 --registry=https://registry.npm.taobao.org --force
RUN npm config set registry https://registry.npm.taobao.org

RUN yarn --unsafe-perm
RUN yarn run build
RUN npm cache clean

EXPOSE 3000
EXPOSE 3001
EXPOSE 4000

CMD ["/start.sh"]
**/node_modules
node_modules
#!/bin/bash

google-chrome-stable
yarn run pm2

version: '3'
services:
  mysql:
    container_name: mysql
    image: 'mysql:5.7'
    restart: always
    privileged: true
    ports:
      - '3306:3306'
    environment:
      POSTGRES_USER: 'root'
      POSTGRES_PASSWORD: 'root'

  app:
    container_name: app
    build: .
    ports:
      - '3000:3000'
      - '3001:3001'
      - '4000:4000'
FROM node:14-slim

# Install latest chrome dev package and fonts to support major charsets (Chinese, Japanese, Arabic, Hebrew, Thai and a few others)
# Note: this installs the necessary libs to make the bundled version of Chromium that Puppeteer
# installs, work.
RUN apt-get update \
    && apt-get install -y wget gnupg \
    && wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add - \
    && sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list' \
    && apt-get update \
    && apt-get install -y google-chrome-stable fonts-ipafont-gothic fonts-wqy-zenhei fonts-thai-tlwg fonts-kacst fonts-freefont-ttf libxss1 \
      --no-install-recommends \
    && rm -rf /var/lib/apt/lists/*

# If running Docker >= 1.13.0 use docker run's --init arg to reap zombie processes, otherwise
# uncomment the following lines to have `dumb-init` as PID 1
# ADD https://github.com/Yelp/dumb-init/releases/download/v1.2.2/dumb-init_1.2.2_x86_64 /usr/local/bin/dumb-init
# RUN chmod +x /usr/local/bin/dumb-init
# ENTRYPOINT ["dumb-init", "--"]

# Uncomment to skip the chromium download when installing puppeteer. If you do,
# you'll need to launch puppeteer with:
#     browser.launch({executablePath: 'google-chrome-stable'})
# ENV PUPPETEER_SKIP_CHROMIUM_DOWNLOAD true

# Install puppeteer so it's available in the container.
RUN npm i puppeteer \
    # Add user so we don't need --no-sandbox.
    # same layer as npm install to keep re-chowned files from using up several hundred MBs more space
    && groupadd -r pptruser && useradd -r -g pptruser -G audio,video pptruser \
    && mkdir -p /home/pptruser/Downloads \
    && chown -R pptruser:pptruser /home/pptruser \
    && chown -R pptruser:pptruser /node_modules

# Run everything after as non-privileged user.

WORKDIR /app
COPY / /

# install global packages
RUN npm install -g yarn pm2 --registry=https://registry.npm.taobao.org --force
RUN npm config set registry https://registry.npm.taobao.org

RUN yarn --unsafe-perm
RUN yarn run build

EXPOSE 3000
EXPOSE 3001
EXPOSE 4000

USER pptruser
CMD ["/start.sh"]


# ENV PUPPETEER_SKIP_DOWNLOAD=true

# RUN sysctl -w kernel.unprivileged_userns_clone=1

# RUN apt-get update \
#     && apt-get install -y wget gnupg \
#     && wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add - \
#     && sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list' \
#     && apt-get update \
#     && apt-get install -y google-chrome-stable fonts-ipafont-gothic fonts-wqy-zenhei fonts-thai-tlwg fonts-kacst fonts-freefont-ttf libxss1 \
#       --no-install-recommends \
#     && rm -rf /var/lib/apt/lists/*


# # Run everything after as non-privileged user.

# WORKDIR /app
# COPY / /

# # install global packages
# RUN npm install -g yarn pm2 --registry=https://registry.npm.taobao.org --force
# RUN npm config set registry https://registry.npm.taobao.org

# RUN yarn --unsafe-perm
# RUN yarn run build

# EXPOSE 3000
# EXPOSE 3001
# EXPOSE 4000

# CMD ["/start.sh"]