File tree Expand file tree Collapse file tree 2 files changed +5
-7
lines changed
Expand file tree Collapse file tree 2 files changed +5
-7
lines changed Original file line number Diff line number Diff line change @@ -32,11 +32,9 @@ pnpm-debug.log*
3232! .yarn /sdks
3333! .yarn /versions
3434
35- # custom
36- .env
37- .env. *
38-
3935# docker pointless files
4036README.md
4137.gitignore
42- .vscode /*
38+ .vscode /*
39+
40+ ! .env.example
Original file line number Diff line number Diff line change @@ -4,11 +4,11 @@ WORKDIR /build
44COPY . /build/
55RUN corepack enable
66RUN yarn install --immutable
7- RUN yarn build
7+ RUN export $(cat .env.example) && yarn build
88
99FROM node:22-alpine3.19 AS runner
1010
1111COPY --from=builder /build/dist /usr/local/bin/appeals
1212HEALTHCHECK --interval=10s --timeout=3s \
1313 CMD wget --no-verbose --tries=1 --spider http://localhost:$PORT/ || exit 1
14- CMD [ "node" , "/usr/local/bin/appeals/server/entry.mjs" ]
14+ CMD [ "node" , "/usr/local/bin/appeals/server/entry.mjs" ]
You can’t perform that action at this time.
0 commit comments