You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I encountered the same problem today!
And I have found a work around!
Hoping to make some hint!
We just need a little bit more time to find out the truth problem!
Failed Dockerfile:
FROM node:16-alpine3.15
# Copy the current directory into the Docker imageCOPY . /submission-quality-processor
# Set working directory for future useWORKDIR /submission-quality-processor
# Install the dependencies from package.jsonRUN npm install
ENTRYPOINT npm start
Successed Dockerfile:
FROM node:16-alpine3.15
RUN set -eux; \
apk add --no-cache --virtual build-dependencies wget unzip gnupg; \
apk add --no-cache git python3 py-pip bash shellcheck openjdk11-jre curl musl-locales musl-locales-lang;
# Copy the current directory into the Docker imageCOPY . /submission-quality-processor
# Set working directory for future useWORKDIR /submission-quality-processor
# Install the dependencies from package.jsonRUN npm install
ENTRYPOINT npm start
I encountered the same problem today!
And I have found a work around!
Hoping to make some hint!
We just need a little bit more time to find out the truth problem!
Failed
Dockerfile
:Successed
Dockerfile
:Let's find out the ghost by reducing this part:
RUN set -eux; \ apk add --no-cache --virtual build-dependencies wget unzip gnupg; \ apk add --no-cache git python3 py-pip bash shellcheck openjdk11-jre curl musl-locales musl-locales-lang;
The text was updated successfully, but these errors were encountered: