Skip to content

Commit

Permalink
Merge pull request #11 from krflorian/feature/stackoverflow
Browse files Browse the repository at this point in the history
update dockerfile
  • Loading branch information
krflorian authored Mar 25, 2024
2 parents 91cd03b + 3240205 commit bb3c340
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,10 @@ FROM python:3.11
#
WORKDIR /app

# COPY pyproject.toml poetry.lock app.py ./
COPY pyproject.toml poetry.lock app.py ./
COPY app.py requirements.txt ./
RUN pip install --no-cache-dir --upgrade -r requirements.txt
RUN pip install .

COPY ./src /app/src
RUN touch README.md
Expand Down

0 comments on commit bb3c340

Please sign in to comment.