Commit df1ebd2a authored by nanahira's avatar nanahira

some updates

parent 90ba2925
Pipeline #5767 passed with stages
in 2 minutes and 22 seconds
FROM node:buster-slim
FROM node:bullseye-slim
RUN apt update && apt -y install python3 build-essential && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
WORKDIR /usr/src/app
COPY ./package*.json ./
......
This diff is collapsed.
......@@ -46,7 +46,7 @@
"rxjs": "^6.6.3",
"sqlite3": "^5.0.0",
"swagger-ui-express": "^4.1.6",
"typeorm": "^0.2.32",
"typeorm": "^0.2.37",
"underscore": "^1.12.0"
},
"devDependencies": {
......
......@@ -119,7 +119,6 @@ const mycardEntities = [
database: './ygopro-database/locales/en-US/cards.cdb',
}),
TypeOrmModule.forRoot({
synchronize: false,
type: 'postgres',
name: 'mycard',
entities: mycardEntities,
......@@ -128,6 +127,7 @@ const mycardEntities = [
host: config.host,
port: config.port,
database: config.database,
synchronize: false,
}),
],
controllers: [AppController],
......
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