From d0b0d1bf92b7893504c824b6b6d4776feaf128a2 Mon Sep 17 00:00:00 2001 From: McDefault Date: Sat, 18 Apr 2020 14:23:16 +0200 Subject: [PATCH] copy destination --- 3. Creating the Dockerfile and Running!.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/3. Creating the Dockerfile and Running!.md b/3. Creating the Dockerfile and Running!.md index 9d31a01..437f285 100644 --- a/3. Creating the Dockerfile and Running!.md +++ b/3. Creating the Dockerfile and Running!.md @@ -20,7 +20,7 @@ WORKDIR /usr/src/bot That's great and all, but we also need to tell Docker where our bot is. ```Dockerfile # Copy and Install our bot -COPY package.json /usr/src/bot +COPY package.json ./ RUN npm install ``` @@ -100,4 +100,4 @@ $ docker exec -it /bin/bash That will put us inside our bot's little world so we can play around with it. -In the next tutorial, I will cover ``docker-compose`` and setting up our bot with it's own private little PostgreSQL container! \ No newline at end of file +In the next tutorial, I will cover ``docker-compose`` and setting up our bot with it's own private little PostgreSQL container!