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

This commit is contained in:
2023-11-09 22:03:08 +11:00
parent 859eede9ed
commit db2b41cee7

View File

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