From a1f25f1dda5c7b033dba2922ee5c0f0aa3b7fc25 Mon Sep 17 00:00:00 2001 From: Sean Corrigan Date: Tue, 14 Sep 2021 16:52:30 -0400 Subject: [PATCH] oopsie --- dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dockerfile b/dockerfile index 3cb953e..22d5a33 100644 --- a/dockerfile +++ b/dockerfile @@ -1,9 +1,9 @@ # set base image (host OS) FROM python:3.8 # copy the dependencies file to the working directory -COPY require.txt . +COPY requirements.txt . # install dependencies -RUN pip install -r require.txt +RUN pip install -r requirements.txt # copy the content of the local src directory to the working directory COPY main.py . # command to run on container start