Skip to content

Commit ed3ec27

Browse files
committed
bump node version
1 parent d35cd91 commit ed3ec27

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/exec_bash_exercise.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,6 @@ jobs:
4545
docker buildx create --use
4646
docker buildx build \
4747
--platform linux/amd64,linux/arm,linux/arm64,linux/ppc64le,linux/s390x \
48-
--build-arg SECRET_MESSAGE=${{ secrets.FIRST_VOLUME_EXERCISE_SECRET_MESSAGE }} \
48+
--build-arg "SECRET_MESSAGE=${{ secrets.FIRST_VOLUME_EXERCISE_SECRET_MESSAGE }}" \
4949
--tag devopsdockeruh/exec_bash_exercise:multiarch \
5050
--push ./exec_bash_exercise_and_first_volume_exercise

.github/workflows/first_volume_exercise.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,6 @@ jobs:
4545
docker buildx create --use
4646
docker buildx build \
4747
--platform linux/amd64,linux/arm,linux/arm64,linux/ppc64le,linux/s390x \
48-
--build-arg SECRET_MESSAGE=${{ secrets.FIRST_VOLUME_EXERCISE_SECRET_MESSAGE }} \
48+
--build-arg "SECRET_MESSAGE=${{ secrets.FIRST_VOLUME_EXERCISE_SECRET_MESSAGE }}" \
4949
--tag devopsdockeruh/first_volume_exercise:multiarch \
5050
--push ./exec_bash_exercise_and_first_volume_exercise

exec_bash_exercise_and_first_volume_exercise/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:dubnium
1+
FROM node:14.4
22

33
ARG SECRET_MESSAGE
44
ENV SECRET_MESSAGE=$SECRET_MESSAGE
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Writes "secret message" to file every once in a while.
1+
Writes a "secret message" to file every once in a while.

0 commit comments

Comments
 (0)