Skip to content

Commit 1760775

Browse files
authored
Merge pull request #240 from giuseppe/rename-dockerfiles
build: rename Dockerfile to Containerfile
2 parents 3c4eb36 + a65b310 commit 1760775

File tree

7 files changed

+5
-5
lines changed

7 files changed

+5
-5
lines changed

.github/workflows/release.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ jobs:
2020
run: |
2121
./buildx create --name cross --platform=amd64,arm,arm64,s390x,ppc64le --use
2222
./buildx inspect --bootstrap
23-
- name: "Build binaries from Dockerfile.cross"
24-
run: ./buildx build -o /tmp --platform=amd64,arm64,arm,s390x,ppc64le -f Dockerfile.cross .
23+
- name: "Build binaries from Containerfile.cross"
24+
run: ./buildx build -o /tmp --platform=amd64,arm64,arm,s390x,ppc64le -f Containerfile.cross .
2525
- name: "Create /tmp/artifact"
2626
run: |
2727
mkdir -p /tmp/artifact
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,11 +43,11 @@ the install script will usually create the device automatically; or
4343
* manually create the device with the command `mknod /dev/fuse -m 0666 c 10 229`
4444
(see [this code](https://github.com/libfuse/libfuse/blob/f0e08cc700d629da2d46def8b620b0ed858cc0d9/util/install_helper.sh#L35))
4545

46-
3. Clone this repository, and switch to the top-level folder containing the file "`Dockerfile.static.ubuntu`";
46+
3. Clone this repository, and switch to the top-level folder containing the file "`Containerfile.static.ubuntu`";
4747

4848
4. Launch the build with the command (note the single dot `.` at the end):
4949
```
50-
buildah bud -v $PWD:/build/fuse-overlayfs -t fuse-overlayfs -f ./Dockerfile.static.ubuntu .
50+
buildah bud -v $PWD:/build/fuse-overlayfs -t fuse-overlayfs -f ./Containerfile.static.ubuntu .
5151
```
5252

5353
5. Copy the resulting binary to your host:

tests/alpine.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ cd "$(dirname "$0")"
44

55
set -ex
66

7-
docker build -t fuse-overlayfs:alpine -f ../Dockerfile.alpine ..
7+
docker build -t fuse-overlayfs:alpine -f ../Containerfile.alpine ..
88

99
docker run --privileged --rm --entrypoint /unlink.sh -w /tmp \
1010
-e EXPECT_UMOUNT_STATUS=1 \

0 commit comments

Comments
 (0)