Skip to content

Commit

Permalink
test: add default BASE_TEST_IMAGE to test-project Dockerfiles (cypres…
Browse files Browse the repository at this point in the history
  • Loading branch information
MikeMcC399 authored Sep 2, 2024
1 parent e936cda commit a2131cd
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion factory/test-project/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG BASE_TEST_IMAGE
ARG BASE_TEST_IMAGE='cypress/factory'

FROM ${BASE_TEST_IMAGE}
RUN echo "current user: $(whoami)"
Expand Down
2 changes: 1 addition & 1 deletion factory/test-project/argsDefined.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ ARG CHROME_VERSION='126.0.6478.114-1'
ARG EDGE_VERSION='126.0.2592.61-1'
ARG FIREFOX_VERSION='128.0'

ARG BASE_TEST_IMAGE
ARG BASE_TEST_IMAGE='cypress/factory'

FROM ${BASE_TEST_IMAGE}
RUN echo "current user: $(whoami)"
Expand Down
2 changes: 1 addition & 1 deletion factory/test-project/included-non-root-user.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG BASE_TEST_IMAGE
ARG BASE_TEST_IMAGE='cypress/factory'

FROM ${BASE_TEST_IMAGE}
RUN echo "current user: $(whoami)"
Expand Down
2 changes: 1 addition & 1 deletion factory/test-project/included.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG BASE_TEST_IMAGE
ARG BASE_TEST_IMAGE='cypress/factory'

FROM ${BASE_TEST_IMAGE}
RUN echo "current user: $(whoami)"
Expand Down
2 changes: 1 addition & 1 deletion factory/test-project/node-override-version.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ARG NODE_VERSION='18.17.1'

ARG BASE_TEST_IMAGE
ARG BASE_TEST_IMAGE='cypress/factory'

FROM ${BASE_TEST_IMAGE}
2 changes: 1 addition & 1 deletion factory/test-project/non-root-user.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG BASE_TEST_IMAGE
ARG BASE_TEST_IMAGE='cypress/factory'

FROM ${BASE_TEST_IMAGE}
RUN echo "current user: $(whoami)"
Expand Down

0 comments on commit a2131cd

Please sign in to comment.