Skip to content

Commit

Permalink
feat: add docker/ubuntu to makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
Chemaclass committed Oct 13, 2024
1 parent a5800c5 commit 1309f54
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,10 @@ docker/alpine:
@docker run --rm -it -v "$(shell pwd)":/project -w /project alpine:latest \
sh -c "apk add bash make shellcheck git && bash"

docker/ubuntu:
@docker run --rm -it -v "$(shell pwd)":/project -w /project ubuntu:latest \
sh -c "apt update && apt install -y bash make shellcheck git && bash"

env/example:
@echo "Copying variables without the values from .env into .env.example"
@sed 's/=.*/=/' .env > .env.example
Expand Down

0 comments on commit 1309f54

Please sign in to comment.