Update Dockerfile

This commit is contained in:
cunningpike 2023-01-15 21:52:21 -05:00 committed by GitHub
parent ef53dee43d
commit c0e6c6c028
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@ FROM python:slim-bullseye
# Copy local code to the container image. # Copy local code to the container image.
ENV APP_HOME /app ENV APP_HOME /app
WORKDIR $APP_HOME WORKDIR $APP_HOME
COPY . ./ COPY ./ ./
# Install production dependencies. # Install production dependencies.
RUN pip install . RUN pip install .