remove apk cache as it seems to have issues

pull/113/head
Ben Phelps 2 years ago
parent 6a238948c2
commit 4e90bd8e46

@ -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…
Cancel
Save