Commit ddf9115 1 parent 331fe65 commit ddf9115 Copy full SHA for ddf9115
File tree 3 files changed +15
-4
lines changed
3 files changed +15
-4
lines changed Original file line number Diff line number Diff line change @@ -2,20 +2,21 @@ FROM node:16-alpine AS compile
2
2
3
3
WORKDIR /usr/src/app
4
4
5
- RUN apk add sudo build-base libpng libpng-dev jpeg-dev pango-dev cairo-dev giflib-dev
5
+ RUN apk add sudo build-base libpng libpng-dev jpeg-dev pango-dev cairo-dev giflib-dev openssl1.1-compat
6
6
COPY package.json ./
7
7
COPY yarn.lock ./
8
8
COPY packages/creepyface-site/package.json ./packages/creepyface-site/package.json
9
9
COPY packages/creepyface-site/prisma ./packages/creepyface-site/prisma
10
10
RUN yarn --frozen-lockfile
11
11
COPY lerna.json ./
12
12
COPY packages/creepyface-site ./packages/creepyface-site
13
+ RUN yarn prisma generate
13
14
RUN yarn build
14
15
RUN yarn install --production --ignore-scripts --prefer-offline
15
16
16
17
FROM node:16-alpine AS runtime
17
18
18
- RUN apk add libpng jpeg pango cairo giflib imagemagick
19
+ RUN apk add libpng jpeg pango cairo giflib imagemagick openssl1.1-compat
19
20
20
21
WORKDIR /usr/src/app
21
22
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ {
2
+ "healthchecks" : {
3
+ "web" : [
4
+ {
5
+ "type" : " startup" ,
6
+ "name" : " root" ,
7
+ "description" : " Checking if the app contains the title" ,
8
+ "content" : " Create yours"
9
+ }
10
+ ]
11
+ }
12
+ }
You can’t perform that action at this time.
0 commit comments