Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: upgrade dependencies #327

Merged
merged 1 commit into from
Sep 11, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 3 additions & 6 deletions api/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,17 +13,14 @@
# See the License for the specific language governing permissions and
# limitations under the License.

FROM node:lts-alpine3.13
RUN npm install pm2 -g
FROM oven/bun

ARG BUILD_SHA=default_value
ENV __BUILD_SHA=$BUILD_SHA

WORKDIR /opt/app
COPY . /opt/app
RUN cd /opt/app && npm install
RUN npm run build
RUN node node_modules/esbuild/install.js
RUN cd /opt/app && bun install

WORKDIR /opt/app
CMD ["pm2-runtime","dist/app.js"]
CMD ["bun","run","start"]
Binary file added api/bun.lockb
Binary file not shown.
Loading
Loading