From 15abc20e83b0f1c18b88b2e8b898c65ea39ddcbc Mon Sep 17 00:00:00 2001 From: schlagmichdoch Date: Fri, 17 Feb 2023 17:09:37 +0100 Subject: [PATCH] Include `docker image pull` command to prevent https://github.com/schlagmichdoch/PairDrop/issues/33 --- docs/host-your-own.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/host-your-own.md b/docs/host-your-own.md index c805463..c11d67c 100644 --- a/docs/host-your-own.md +++ b/docs/host-your-own.md @@ -99,6 +99,10 @@ The easiest way to get PairDrop up and running is by using Docker. ### Build the image ```bash +docker image pull node:lts-alpine +``` +> 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