Skip to content

Commit

Permalink
chore: remove leftover single quote
Browse files Browse the repository at this point in the history
  • Loading branch information
ayharano committed Jan 16, 2024
1 parent 63a2b7f commit 04113d7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ FROM base as tests
WORKDIR ${APP_HOME}
RUN pip install --no-cache-dir -e '.[test]' \
&& pip install --no-cache-dir tzdata
CMD ["pytest", "--cov=src", ".", "-vv'"]
CMD ["pytest", "--cov=src", ".", "-vv"]


FROM base as web
Expand All @@ -54,4 +54,4 @@ WORKDIR ${APP_HOME}
RUN pip install --no-cache-dir -e '.' \
&& pip install --no-cache-dir tzdata
EXPOSE 8000
CMD ["uvicorn", "--host", "0.0.0.0", "matamata.main:app", "--reload'"]
CMD ["uvicorn", "--host", "0.0.0.0", "matamata.main:app", "--reload"]

0 comments on commit 04113d7

Please sign in to comment.