Skip to content

Commit

Permalink
Update entry
Browse files Browse the repository at this point in the history
Simplify ARG
  • Loading branch information
compulim committed May 26, 2022
1 parent 627e245 commit 0060e70
Show file tree
Hide file tree
Showing 15 changed files with 18 additions and 42 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [Unreleased]

### Changed

- Resolves [#4301](https://github.com/microsoft/BotFramework-WebChat/issues/4301). Updated `Dockerfile` to support secure container supply chain, by [@compulim](https://github.com/compulim) in PR [#4303](https://github.com/microsoft/BotFramework-WebChat/pull/4303)

## [4.15.2] - 2022-05-09

### Breaking changes
Expand Down
4 changes: 1 addition & 3 deletions packages/test/harness/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
# Setting to a different base image to secure your container supply chain.
ARG REGISTRY=docker.io
ARG IMAGE_VERSION=18-alpine
ARG BASE_IMAGE=$REGISTRY/node:$IMAGE_VERSION
ARG BASE_IMAGE=node:18-alpine

FROM $BASE_IMAGE

Expand Down
4 changes: 1 addition & 3 deletions playground.dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
# Setting to a different base image to secure your container supply chain.
ARG REGISTRY=docker.io
ARG IMAGE_VERSION=18-alpine
ARG BASE_IMAGE=$REGISTRY/node:$IMAGE_VERSION
ARG BASE_IMAGE=node:18-alpine

FROM $BASE_IMAGE

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
# Setting to a different base image to secure your container supply chain.
ARG REGISTRY=docker.io
ARG IMAGE_VERSION=18
ARG BASE_IMAGE=$REGISTRY/node:$IMAGE_VERSION
ARG BASE_IMAGE=node:18

# This container is for simplifying CI when using Azure Pipelines

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
# Setting to a different base image to secure your container supply chain.
ARG REGISTRY=docker.io
ARG IMAGE_VERSION=18
ARG BASE_IMAGE=$REGISTRY/node:$IMAGE_VERSION
ARG BASE_IMAGE=node:18

# This is the container for running the demo under Azure Web App
FROM $BASE_IMAGE
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
# Setting to a different base image to secure your container supply chain.
ARG REGISTRY=docker.io
ARG IMAGE_VERSION=18
ARG BASE_IMAGE=$REGISTRY/node:$IMAGE_VERSION
ARG BASE_IMAGE=node:18

# This container is for simplifying CI when using Azure Pipelines

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
# Setting to a different base image to secure your container supply chain.
ARG REGISTRY=docker.io
ARG IMAGE_VERSION=18
ARG BASE_IMAGE=$REGISTRY/node:$IMAGE_VERSION
ARG BASE_IMAGE=node:18

# This is the container for running the demo under Azure Web App
FROM $BASE_IMAGE
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
# Setting to a different base image to secure your container supply chain.
ARG REGISTRY=docker.io
ARG IMAGE_VERSION=18
ARG BASE_IMAGE=$REGISTRY/node:$IMAGE_VERSION
ARG BASE_IMAGE=node:18

# This container is for simplifying CI when using Azure Pipelines
FROM $BASE_IMAGE
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
# Setting to a different base image to secure your container supply chain.
ARG REGISTRY=docker.io
ARG IMAGE_VERSION=18
ARG BASE_IMAGE=$REGISTRY/node:$IMAGE_VERSION
ARG BASE_IMAGE=node:18

# This is the container for running the demo under Azure Web App
FROM $BASE_IMAGE
Expand Down
4 changes: 1 addition & 3 deletions samples/07.advanced-web-chat-apps/d.sso-for-teams/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
# Setting to a different base image to secure your container supply chain.
ARG REGISTRY=docker.io
ARG IMAGE_VERSION=18
ARG BASE_IMAGE=$REGISTRY/node:$IMAGE_VERSION
ARG BASE_IMAGE=node:18

# This container is for simplifying CI when using Azure Pipelines
FROM $BASE_IMAGE
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
# Setting to a different base image to secure your container supply chain.
ARG REGISTRY=docker.io
ARG IMAGE_VERSION=18
ARG BASE_IMAGE=$REGISTRY/node:$IMAGE_VERSION
ARG BASE_IMAGE=node:18

# This is the container for running the demo under Azure Web App
FROM $BASE_IMAGE
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
# Setting to a different base image to secure your container supply chain.
ARG REGISTRY=docker.io
ARG IMAGE_VERSION=18
ARG BASE_IMAGE=$REGISTRY/node:$IMAGE_VERSION
ARG BASE_IMAGE=node:18

# This container is for simplifying CI when using Azure Pipelines

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
# Setting to a different base image to secure your container supply chain.
ARG REGISTRY=docker.io
ARG IMAGE_VERSION=18
ARG BASE_IMAGE=$REGISTRY/node:$IMAGE_VERSION
ARG BASE_IMAGE=node:18

# This is the container for running the demo under Azure Web App
FROM $BASE_IMAGE
Expand Down
4 changes: 1 addition & 3 deletions testharness.dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
# Setting to a different base image to secure your container supply chain.
ARG REGISTRY=docker.io
ARG IMAGE_VERSION=18-alpine
ARG BASE_IMAGE=$REGISTRY/node:$IMAGE_VERSION
ARG BASE_IMAGE=node:18-alpine

FROM $BASE_IMAGE

Expand Down
4 changes: 1 addition & 3 deletions testharness2.dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
# Setting to a different base image to secure your container supply chain.
ARG REGISTRY=docker.io
ARG IMAGE_VERSION=18-alpine
ARG BASE_IMAGE=$REGISTRY/node:$IMAGE_VERSION
ARG BASE_IMAGE=node:18-alpine

FROM $BASE_IMAGE

Expand Down

0 comments on commit 0060e70

Please sign in to comment.