fix: Install curl in the docker image
All checks were successful
Build Docker / Build Image (push) Successful in 36s

This commit is contained in:
Nathan Woodburn 2023-11-09 22:03:08 +11:00
parent 859eede9ed
commit db2b41cee7
Signed by: nathanwoodburn
GPG Key ID: 203B000478AD0EF1

View File

@ -8,6 +8,9 @@ RUN --mount=type=cache,target=/root/.cache/pip \
COPY . /app
# Install curl
RUN apk add --update curl
ENTRYPOINT ["python3"]
CMD ["server.py"]