diff --git a/Dockerfile b/Dockerfile index d5a39bf..f346326 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,8 +4,10 @@ FROM node:18-alpine AS development WORKDIR /app -# Install build dependencies -RUN apk add --no-cache python3 make g++ +# Fix Alpine repo and install build dependencies +RUN sed -i -e 's|http://dl-cdn.alpinelinux.org|https://dl-cdn.alpinelinux.org|' /etc/apk/repositories \ + && apk update \ + && apk add --no-cache python3 make g++ # Copy package files COPY package.json package-lock.json ./ @@ -41,4 +43,4 @@ COPY .nginx/nginx.conf /etc/nginx/conf.d/default.conf EXPOSE 80 -ENTRYPOINT ["nginx", "-g", "daemon off;"] \ No newline at end of file +ENTRYPOINT ["nginx", "-g", "daemon off;"]