Skip to content

Commit

Permalink
feat(JUP): jup exactOut add failback exactIn
Browse files Browse the repository at this point in the history
  • Loading branch information
opanasiuk-oleksii committed Jul 19, 2024
1 parent 3d8d795 commit 3378eb8
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 25 deletions.
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
FROM node:22-alpine as build
FROM node:22.4.0-alpine as build
ARG SDK_VERSION=latest

# Install python and build-base for node-gyp
RUN apk update
RUN apk add --no-cache python3 make g++ bash
RUN apk add openssl=3.3.1-r1
RUN apk add openssl=3.3.1-r3
# Install pnpm globally
RUN npm install -g pnpm

Expand All @@ -29,9 +29,9 @@ RUN pnpm build
# Install only production dependencies
RUN pnpm install --prod

FROM node:22-alpine
FROM node:22.4.0-alpine
RUN apk update
RUN apk add openssl=3.3.1-r1
RUN apk add openssl=3.3.1-r3
WORKDIR /app
ENV NODE_ENV production
COPY --from=build /app/node_modules ./node_modules
Expand Down
34 changes: 17 additions & 17 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion rest-api/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "rest-api",
"version": "3.16.0",
"version": "3.17.0",
"description": "",
"scripts": {
"build": "tsoa spec && nest build",
Expand Down
6 changes: 3 additions & 3 deletions rest-api/pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 3378eb8

Please sign in to comment.