Skip to content

Commit c5a7d28

Browse files
update placeholders
1 parent addee7a commit c5a7d28

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# syntax=docker/dockerfile:1
22

33
# ECR and base image configuration - extracted from CodeBuild environment
4-
ARG ECR_ACCOUNT_ID=0123456789012
4+
ARG ECR_ACCOUNT_ID
55
ARG ECR_REGION=us-east-1
66
ARG BASE_IMAGE_NAME=docker-linuxserver-ubuntu-fips
77
ARG BASE_IMAGE_TAG=ubuntu-fips-2

docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
---
22
services:
33
docker-code-server:
4-
image: "${ECR_ACCOUNT_ID}.dkr.ecr-fips.${ECR_REGION}.amazonaws.com/docker-code-server:${IMAGE_TAG:-local}"
4+
image: "${ECR_ACCOUNT_ID:-0123456789012}.dkr.ecr-fips.${ECR_REGION}.amazonaws.com/docker-code-server:${IMAGE_TAG:-local}"
55
pull_policy: build
66
build:
77
context: .
88
dockerfile: Dockerfile
99
platforms:
1010
- linux/amd64
1111
args:
12-
- ECR_ACCOUNT_ID=${ECR_ACCOUNT_ID}
12+
- ECR_ACCOUNT_ID=${ECR_ACCOUNT_ID:-0123456789012}
1313
- BASE_IMAGE_TAG=${BASE_IMAGE_TAG:-local}
1414
- VERSION=${VERSION:-4.102.1}
1515
- CODE_RELEASE=${CODE_RELEASE:-4.102.1}

0 commit comments

Comments
 (0)