Skip to content

Commit

Permalink
audit fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
egor-romanov committed May 7, 2024
1 parent bbcef6e commit f22e967
Show file tree
Hide file tree
Showing 4 changed files with 15,492 additions and 8,095 deletions.
6 changes: 3 additions & 3 deletions web/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,16 @@ WORKDIR /app

COPY . .

RUN yarn install \
RUN npm install \
--prefer-offline \
--frozen-lockfile \
--non-interactive \
--production=false

RUN yarn build
RUN npm run build

RUN rm -rf node_modules && \
NODE_ENV=production yarn install \
NODE_ENV=production npm install \
--prefer-offline \
--pure-lockfile \
--non-interactive \
Expand Down
6 changes: 3 additions & 3 deletions web/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Live: <https://test-inspector.fly.dev>
Make sure to install the dependencies

```bash
yarn install
npm install
```

Fill the `.env` with the Supabase environment variables:
Expand All @@ -31,15 +31,15 @@ SUPABASE_KEY="<your_key>"
Start the development server on <http://localhost:3000>

```bash
yarn dev
npm run dev
```

## Production

Build the application for production:

```bash
yarn build
npm run build
```

Checkout the [deployment documentation](https://v3.nuxtjs.org/docs/deployment).
Loading

0 comments on commit f22e967

Please sign in to comment.