diff --git a/Dockerfile b/Dockerfile
index 653ea5bbd90bfcc43514e84d5a4dfda5e7abe008..2cba9c01055dcf4e00ff6c2081a50830c20a292a 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,8 +1,9 @@
 FROM ubuntu:20.04
 
-COPY requirements.txt /requirements.txt
+# Just copy everything
+COPY . /pypcc
 
 RUN apt-get update && apt-get install -y python3 python3-pip python3-yaml git && \
-    pip3 install -r requirements.txt
+    pip3 install -r /pypcc/requirements.txt
 
-WORKDIR ./
+WORKDIR /pypcc