Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
…-express-graphql-template into feat/keploy-experimental
  • Loading branch information
sagar-t-97 committed Jun 28, 2024
2 parents 6a8fd2e + a3051df commit 4c6bafd
Show file tree
Hide file tree
Showing 51 changed files with 5,724 additions and 5,545 deletions.
12 changes: 0 additions & 12 deletions .babelrc

This file was deleted.

4 changes: 2 additions & 2 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
node-version: [20.x]
steps:
- uses: actions/checkout@v2
- name: Setup environment
Expand Down Expand Up @@ -101,7 +101,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
node-version: [20.x]
steps:
- uses: wednesday-solutions/[email protected]
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
node-version: [20.x]
steps:
- name: Checkout code
uses: actions/checkout@v3
Expand Down
9 changes: 4 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
FROM node:18
FROM node:20
ARG ENVIRONMENT_NAME
ARG BUILD_NAME
ARG APP_PATH
ARG PLATFORM
ENV NODE_OPTIONS=--openssl-legacy-provider

# RUN mkdir -p /app-build
# ADD . /app-build
Expand All @@ -16,18 +15,18 @@ RUN yarn
RUN yarn build:$BUILD_NAME


FROM node:18-alpine
FROM node:20-alpine
ARG ENVIRONMENT_NAME
ARG BUILD_NAME
ARG APP_PATH
ARG PLATFORM
ENV NODE_OPTIONS=--openssl-legacy-provider

WORKDIR ${APP_PATH}
RUN mkdir -p ${APP_PATH}/dist
RUN apk add yarn

RUN yarn global add [email protected] [email protected]
RUN yarn add shelljs bull dotenv pg [email protected]
RUN yarn add shelljs dotenv pg [email protected]
RUN apk add --no-cache dumb-init
ADD scripts/migrate-and-run.sh ${APP_PATH}/
ADD package.json ${APP_PATH}/
Expand Down
Loading

0 comments on commit 4c6bafd

Please sign in to comment.