Skip to content

Commit

Permalink
[core] fix dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
devlikepro committed May 24, 2024
1 parent 158a557 commit b59eb57
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Build
#
ARG NODE_VERSION=20.12.2-bullseye
FROM node:${NODE_VERSION}-bullseye as build
FROM node:${NODE_VERSION} as build
ENV PUPPETEER_SKIP_DOWNLOAD=True

# npm packages
Expand All @@ -26,7 +26,7 @@ RUN yarn build && find ./dist -name "*.d.ts" -delete
#
# Final
#
FROM node:${NODE_VERSION}-bullseye as release
FROM node:${NODE_VERSION} as release
ENV PUPPETEER_SKIP_DOWNLOAD=True
# Quick fix for memory potential memory leaks
# https://github.com/devlikeapro/whatsapp-http-api/issues/347
Expand Down

0 comments on commit b59eb57

Please sign in to comment.