File tree Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 1
1
# #######################################
2
2
# prod image
3
3
# ######################################
4
- FROM alpine:3.20.2 as prod
4
+ FROM alpine:3.20.2 AS prod
5
5
6
6
ARG GH_CLI_VER=2.44.1
7
7
@@ -36,7 +36,7 @@ ENTRYPOINT ["/bin/bash", "/bin/entrypoint.sh"]
36
36
# ######################################
37
37
# image for dev build environment
38
38
# #####################################
39
- FROM prod as dev
39
+ FROM prod AS dev
40
40
41
41
# install packages
42
42
RUN apk add --update --no-cache make zsh tmux vim tig
@@ -54,7 +54,7 @@ ENTRYPOINT ["/bin/zsh"]
54
54
# ######################################
55
55
# image for creating the documentation
56
56
# #####################################
57
- FROM node:22.6.0-alpine as docs
57
+ FROM node:22.6.0-alpine AS docs
58
58
59
59
# install packages
60
60
RUN apk add --update --no-cache bash make git zsh curl tmux
Original file line number Diff line number Diff line change @@ -19,20 +19,20 @@ help: ## help target to show available commands with information
19
19
20
20
.PHONY : markdownlint
21
21
markdownlint : # # Validate markdown files
22
- docker- compose run docs markdownlint .
22
+ docker compose run docs markdownlint .
23
23
24
24
.PHONY : zsh
25
25
zsh : # # open dev container with build environment
26
- docker- compose run --service-ports dev
26
+ docker compose run --service-ports dev
27
27
28
28
.PHONY : prod
29
29
prod : # # run the prod docker image with bash
30
- docker- compose run prod
30
+ docker compose run prod
31
31
32
32
.PHONY : prune
33
33
prune : # # delete the whole environment
34
- docker- compose down -v --rmi all --remove-orphans
34
+ docker compose down -v --rmi all --remove-orphans
35
35
36
36
.Phony : shellcheck
37
37
shellcheck : # # run shellcheck
38
- docker- compose run shellcheck -x src/* .sh
38
+ docker compose run shellcheck -x src/* .sh
You can’t perform that action at this time.
0 commit comments