1
0
mirror of https://github.com/pumpitupdev/pumptools.git synced 2025-01-31 11:53:45 +01:00

Rename dockerfile to allow using multiple dockerfiles

This commit is contained in:
icex2 2021-01-17 00:39:48 +01:00
parent 9126fbd804
commit 6c944ab9a0
3 changed files with 2 additions and 2 deletions

View File

@ -43,7 +43,7 @@ test: build
build-docker:
$(V)rm -rf $(BUILDDIR)/docker
$(V)mkdir -p $(BUILDDIR)/docker
$(V)docker build -t pumptools:build .
$(V)docker build -f Dockerfile.build -t pumptools:build .
$(V)docker create --name pumptools-build pumptools:build
$(V)docker cp pumptools-build:/pumptools/build $(BUILDDIR)/docker
$(V)mv $(BUILDDIR)/docker/build/* $(BUILDDIR)/docker

View File

@ -28,7 +28,7 @@ features to work correctly:
* Hook libraries, e.g. `nx2hook` that support network features, e.g. usb profiles with pumpnet
* IO API implementations that support real devices, e.g. real PIUIO, which use libusb-1.0
Taken from [the Dockerfile for building pumptools](../../Dockerfile), the following commands install
Taken from [the Dockerfile for building pumptools](../../Dockerfile.build), the following commands install
the dependencies that you need on an Ubuntu-based system:
```bash