From aa95fd4496d3a02888a7d2f8796f036e2208bfb5 Mon Sep 17 00:00:00 2001 From: Andre Wanlin Date: Fri, 29 Dec 2023 11:34:39 -0600 Subject: [PATCH] Revert sh to bash Signed-off-by: Andre Wanlin --- docs/deployment/docker.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/deployment/docker.md b/docs/deployment/docker.md index 1e89607240..675a8de947 100644 --- a/docs/deployment/docker.md +++ b/docs/deployment/docker.md @@ -39,7 +39,7 @@ package with `yarn build:backend`. In a CI workflow it might look something like this, from the root: -```sh +```bash yarn install --frozen-lockfile # tsc outputs type definitions to dist-types/ in the repo root, which are then consumed by the build @@ -126,7 +126,7 @@ With the project built and the `.dockerignore` and `Dockerfile` in place, we are now ready to build the final image. From the root of the repo, execute the build: -```sh +```bash docker image build . -f packages/backend/Dockerfile --tag backstage ```