Skip to content

Commit

Permalink
Fixing path to Docker files
Browse files Browse the repository at this point in the history
  • Loading branch information
einari committed Jun 8, 2024
1 parent dcebba6 commit baacd83
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/basedev-mongodb.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ jobs:
with:
builder: ${{ steps.buildx.outputs.name }}
context: .
file: ./MongoDB/Dockerfile
file: ./BaseDevelopment/MongoDB/Dockerfile
platforms: linux/amd64,linux/arm64
push: true
tags: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/basedev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ jobs:
with:
builder: ${{ steps.buildx.outputs.name }}
context: .
file: ./MongoDB/Dockerfile
file: ./BaseDevelopment/Dockerfile
platforms: linux/amd64,linux/arm64
push: true
tags: |
Expand Down
3 changes: 0 additions & 3 deletions BaseDevelopment/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,3 @@ RUN apt-get update \
ca-certificates \
&& rm -rf /var/lib/apt/lists/*

# Add Tini to get a real init process
RUN curl -LJ https://github.com/krallin/tini/releases/download/v0.19.0/tini-$(dpkg --print-architecture) --output /usr/bin/tini
RUN chmod +x /usr/bin/tini
4 changes: 4 additions & 0 deletions BaseDevelopment/MongoDB/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,7 @@ RUN mkdir -p /data/db /data/configdb \
&& mongod --shutdown

VOLUME /data/db /data/configdb

# Add Tini to get a real init process
RUN curl -LJ https://github.com/krallin/tini/releases/download/v0.19.0/tini-$(dpkg --print-architecture) --output /usr/bin/tini
RUN chmod +x /usr/bin/tini

0 comments on commit baacd83

Please sign in to comment.