Commit 5493c4f4 authored by nanahira's avatar nanahira

rollback

parent 213c9feb
Pipeline #1476 failed with stages
in 3 minutes and 8 seconds
FROM node:buster-slim FROM node:7.2.1
RUN apt-get update && \ RUN mkdir -p /usr/src/app
apt-get install -y vim python3 build-essential curl && \ RUN apt-get update
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* && \ RUN apt-get install vim -y
ln -sf /usr/bin/python3 /usr/bin/python
HEALTHCHECK --interval=30s --timeout=3s --retries=3 CMD curl -fs http://localhost:3000/ || exit 1 HEALTHCHECK --interval=30s --timeout=3s --retries=3 CMD curl -fs http://localhost:3000/ || exit 1
WORKDIR /usr/src/app WORKDIR /usr/src/app
COPY package*.json /usr/src/app/ COPY package.json /usr/src/app/
RUN npm ci RUN npm install
COPY . /usr/src/app COPY . /usr/src/app
# 设置时区 # 设置时区
......
This diff is collapsed.
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
"node-schedule": "^1.2.1", "node-schedule": "^1.2.1",
"pg": "^6.1.0", "pg": "^6.1.0",
"serve-favicon": "~2.3.0", "serve-favicon": "~2.3.0",
"sqlite3": "^5.0.0", "sqlite3": "3.1.8",
"superagent": "^3.3.1", "superagent": "^3.3.1",
"underscore": "^1.8.3" "underscore": "^1.8.3"
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment