diff --git a/Dockerfile b/Dockerfile index 0a62dc8..8e32394 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,8 +6,9 @@ COPY requirements.txt ./ RUN pip install --no-cache-dir -r requirements.txt # Copy in the source code -COPY src ./src -EXPOSE 5000 +COPY . ./ +# Sets configuration on the image that indicates a port the image would like to expose. +#EXPOSE 5000 # Setup an app user so the container doesn't run as the root user RUN useradd app