From bf59351cf9fa7c58f6c8ecc89fa5e4bd446fdf52 Mon Sep 17 00:00:00 2001 From: whyour Date: Sun, 9 Jan 2022 23:17:50 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B5=8B=E8=AF=95nodejs14=20sqlite?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/build_docker_image.yml | 5 ++++- docker/Dockerfile | 1 - 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build_docker_image.yml b/.github/workflows/build_docker_image.yml index bb102199..45d64b52 100644 --- a/.github/workflows/build_docker_image.yml +++ b/.github/workflows/build_docker_image.yml @@ -23,7 +23,7 @@ jobs: - uses: actions/checkout@v2 - uses: actions/setup-node@v1 with: - node-version: '16' + node-version: '14' - name: build front and back run: | @@ -56,6 +56,9 @@ jobs: steps: - uses: actions/checkout@v2 + - uses: actions/setup-node@v1 + with: + node-version: '14' - name: Set time zone uses: szenius/set-timezone@v1.0 diff --git a/docker/Dockerfile b/docker/Dockerfile index 21663eaa..8fe95376 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -31,7 +31,6 @@ RUN set -x \ python2 \ g++ \ make \ - sqlite \ && rm -rf /var/cache/apk/* \ && ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime \ && echo "Asia/Shanghai" > /etc/timezone \