feat: remove postgres & use a single docker container

This commit is contained in:
Elias Schneider
2022-10-11 22:30:06 +02:00
parent e2b3e6a1e8
commit 388ac395ba
18 changed files with 349 additions and 274 deletions

View File

@@ -1,7 +1,6 @@
FROM node:18-alpine AS deps
WORKDIR /opt/app
COPY package.json package-lock.json ./
RUN npm ci
FROM node:18-alpine AS builder
ENV NODE_ENV=production