Use docker build --pull instead of docker image pull

This commit is contained in:
schlagmichdoch 2023-02-17 17:29:16 +01:00 committed by GitHub
parent 2b11057082
commit 7af96e6051
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -99,13 +99,11 @@ The easiest way to get PairDrop up and running is by using Docker.
### Build the image
```bash
docker image pull node:lts-alpine
docker build --pull . -f Dockerfile -t pairdrop
```
> Prevents Docker from using an old `node:lts-alpine` image by pulling the latest
```bash
docker build . -f Dockerfile -t pairdrop
```
> A GitHub action is set up to do this step automatically
> A GitHub action is set up to do this step automatically.
>
> `--pull` ensures always the latest node image is used.
### Run the image
```bash