Skip to content

Commit

Permalink
fix: trunk
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesgorrie committed Dec 9, 2024
1 parent 7931ab5 commit 30db281
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
10 changes: 6 additions & 4 deletions Dockerfile.webapp
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,12 @@ HEALTHCHECK --interval=30s --timeout=30s --start-period=5s --retries=3 CMD curl
WORKDIR /usr/src
ENV PYTHONPATH=/usr/src

RUN apt-get update && \
apt-get install -y --no-install-recommends \
postgresql-client && \
rm -rf /var/lib/apt/lists/*
RUN <<EOF
apt-get update &&
apt-get install -y --no-install-recommends
postgresql-client &&
rm -rf /var/lib/apt/lists/*
EOF

RUN pip install --no-cache-dir poetry==1.7.1
COPY poetry.lock pyproject.toml ./
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ If you have not run the bootstrap previously run:

### Development

To get a running version of the API on http://localhost:8888 run:
To get a running version of the API on
[http://localhost:8888](http://localhost:8888) run:

```shell
make dev
Expand Down

0 comments on commit 30db281

Please sign in to comment.