chore: Bump Node version (#66)

This commit is contained in:
Slava 2023-08-16 12:31:41 +03:00 committed by GitHub
parent ac38d7f837
commit 49da1f9b30
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 3 deletions

View File

@ -1,5 +1,5 @@
# Variables
ARG BUILDER=node:18.15.0-slim
ARG BUILDER=node:18.17.0-slim
ARG IMAGE=${BUILDER}
ARG APP_USER=root
ARG APP_HOME=/hardhat
@ -14,7 +14,7 @@ ARG APP_HOME
# Install fail on arm64 without additional packages
RUN if [ $(uname -m) = "aarch64" ] ; then \
if [ $(awk -F '=' '/^ID/ {print $2}' /etc/os-release) = "alpine" ] ; then \
apk add --update --no-cache python3 python3 make g++ ; \
apk add --update --no-cache python3 make g++ ; \
else \
apt-get update && apt-get install -y python3 make g++ && rm -rf /var/lib/apt/lists/* ; \
fi \
@ -38,4 +38,3 @@ COPY --chown=${APP_USER}:${APP_USER} --from=builder ${APP_HOME} .
EXPOSE 8545
ENTRYPOINT ["npm", "start"]