diff --git a/Dockerfile b/Dockerfile index 976c622..67442ba 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,10 +1,4 @@ - -FROM python:alpine3.20 - -# install apt packages (curl command) -RUN apk add --update-cache curl && \ - apk cache clean && \ - rm -rf /var/cache/apk/* +FROM python:3 #this instruction specifies the "working directory" #or the path in the image where files will be copied and commands will be executed. @@ -21,10 +15,6 @@ RUN pip install poetry RUN poetry config installer.max-workers 10 RUN poetry install --no-interaction --no-ansi -# # Setup an app user so the container doesn't run as the root user -# RUN useradd app -# USER app - # Set the working directory for running the application EXPOSE 8000