File tree 3 files changed +8
-7
lines changed
3 files changed +8
-7
lines changed Original file line number Diff line number Diff line change 1
- FROM alpine:3.14
1
+ FROM alpine:3.17
2
2
3
3
RUN apk update && apk add \
4
4
aws-cli \
@@ -9,7 +9,7 @@ RUN apk update && apk add \
9
9
postgresql-client \
10
10
python3 \
11
11
redis \
12
- stunnel
12
+ stunnel
13
13
14
14
# Add local scripts to global scope
15
15
COPY bin/ /usr/local/bin/
Original file line number Diff line number Diff line change 4
4
BATS_ARGS: =--recursive --pretty
5
5
6
6
build :
7
- docker- compose build
7
+ docker compose build
8
8
9
9
clean :
10
- docker- compose down -v --remove-orphans
10
+ docker compose down -v --remove-orphans
11
11
12
12
production :
13
13
docker build . -t ghcr.io/gsa/cf-backup-manager:latest
14
14
15
15
test :
16
- docker- compose run --rm app test/bats/bin/bats $(BATS_ARGS ) test/* .bats
16
+ docker compose run --rm app test/bats/bin/bats $(BATS_ARGS ) test/* .bats
17
17
18
18
up :
19
- docker- compose up -d
19
+ docker compose up -d
20
20
21
+ down :
22
+ docker compose down
21
23
22
24
.PHONY : test
Original file line number Diff line number Diff line change 1
1
---
2
- version : " 3.7"
3
2
services :
4
3
app :
5
4
build : .
You can’t perform that action at this time.
0 commit comments