1
0
mirror of https://github.com/ebosas/microservices.git synced 2024-11-16 10:08:29 +02:00

Update Docker's pull rate limit comment

This commit is contained in:
ebosas 2021-11-03 13:51:41 +02:00
parent 17b6893da6
commit 1e826f101c
4 changed files with 6 additions and 6 deletions

View File

@ -1,5 +1,5 @@
# FROM golang:1.17-alpine AS backend
# AWS CodeBuild fails due to Docker's pull rate limit.
# AWS CodeBuild fails due to Docker's pull rate limit, using ECR.
FROM public.ecr.aws/bitnami/golang:1.17 AS backend
WORKDIR /go/src/app
COPY go.* ./

View File

@ -1,5 +1,5 @@
# FROM golang:1.17-alpine AS cache
# AWS CodeBuild fails due to Docker's pull rate limit.
# AWS CodeBuild fails due to Docker's pull rate limit, using ECR.
FROM public.ecr.aws/bitnami/golang:1.17 AS cache
WORKDIR /go/src/app
COPY go.* ./

View File

@ -1,5 +1,5 @@
# FROM golang:1.17-alpine AS database
# AWS CodeBuild fails due to Docker's pull rate limit.
# AWS CodeBuild fails due to Docker's pull rate limit, using ECR.
FROM public.ecr.aws/bitnami/golang:1.17 AS database
WORKDIR /go/src/app
COPY go.* ./

View File

@ -1,5 +1,5 @@
# FROM node:14-alpine AS react
# AWS CodeBuild fails due to Docker's pull rate limit.
# FROM node:16-alpine AS react
# AWS CodeBuild fails due to Docker's pull rate limit, using ECR.
FROM public.ecr.aws/bitnami/node:16 AS react
WORKDIR /usr/src/app
COPY web/react/package*.json ./
@ -7,7 +7,7 @@ RUN npm install
COPY web/react ./
RUN npm run build
# FROM node:14-alpine AS bootstrap
# FROM node:16-alpine AS bootstrap
FROM public.ecr.aws/bitnami/node:16 AS bootstrap
WORKDIR /usr/src/app
COPY web/bootstrap/package*.json ./