Daniel Bodky
1 year ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
1 additions and
1 deletions
-
Dockerfile
|
@ -13,7 +13,6 @@ COPY ./.yarnrc .yarnrc |
|
|
COPY ./prisma/schema.prisma prisma/schema.prisma |
|
|
COPY ./prisma/schema.prisma prisma/schema.prisma |
|
|
|
|
|
|
|
|
RUN apt update && apt install -y \ |
|
|
RUN apt update && apt install -y \ |
|
|
curl \ |
|
|
|
|
|
g++ \ |
|
|
g++ \ |
|
|
git \ |
|
|
git \ |
|
|
make \ |
|
|
make \ |
|
@ -53,6 +52,7 @@ RUN yarn database:generate-typings |
|
|
# Image to run, copy everything needed from builder |
|
|
# Image to run, copy everything needed from builder |
|
|
FROM node:18-slim |
|
|
FROM node:18-slim |
|
|
RUN apt update && apt install -y \ |
|
|
RUN apt update && apt install -y \ |
|
|
|
|
|
curl \ |
|
|
openssl \ |
|
|
openssl \ |
|
|
&& rm -rf /var/lib/apt/lists/* |
|
|
&& rm -rf /var/lib/apt/lists/* |
|
|
|
|
|
|
|
|