remove apk cache as it seems to have issues
This commit is contained in:
parent
6a238948c2
commit
4e90bd8e46
1 changed files with 2 additions and 3 deletions
|
@ -7,8 +7,7 @@ WORKDIR /app
|
|||
|
||||
COPY --link package.json pnpm-lock.yaml* ./
|
||||
|
||||
RUN --mount=type=cache,id=apk,sharing=locked,target=/var/cache/apk \
|
||||
<<EOF
|
||||
RUN <<EOF
|
||||
set -xe
|
||||
apk add libc6-compat
|
||||
apk add --virtual .gyp python3 make g++
|
||||
|
@ -59,4 +58,4 @@ EXPOSE $PORT
|
|||
HEALTHCHECK --interval=10s --timeout=3s --start-period=20s \
|
||||
CMD wget --no-verbose --tries=1 --spider --no-check-certificate http://localhost:$PORT/api/healthcheck || exit 1
|
||||
|
||||
CMD ["node", "server.js"]
|
||||
CMD ["node", "server.js"]
|
||||
|
|
Loading…
Add table
Reference in a new issue