File tree Expand file tree Collapse file tree 3 files changed +35
-0
lines changed
Expand file tree Collapse file tree 3 files changed +35
-0
lines changed Original file line number Diff line number Diff line change 1+ FROM mcr.microsoft.com/devcontainers/java:11-bookworm
2+
3+ # Install Maven
4+ RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
5+ && apt-get -y install --no-install-recommends maven
Original file line number Diff line number Diff line change 1+ {
2+ "build" : {
3+ "dockerfile" : " Dockerfile" ,
4+ "context" : " .."
5+ },
6+ "features" : {
7+ "ghcr.io/defanglabs/devcontainer-feature/defang-cli:1.0.4" : {},
8+ "ghcr.io/devcontainers/features/docker-in-docker:2" : {}
9+ }
10+ }
Original file line number Diff line number Diff line change 1+ name : Deploy
2+
3+ on :
4+ push :
5+ branches :
6+ - main
7+
8+ jobs :
9+ deploy :
10+ runs-on : ubuntu-latest
11+ permissions :
12+ contents : read
13+ id-token : write
14+
15+ steps :
16+ - name : Checkout Repo
17+ uses : actions/checkout@v4
18+
19+ - name : Deploy
20+ uses :
DefangLabs/[email protected]
You can’t perform that action at this time.
0 commit comments