diff --git a/Dockerfile b/Dockerfile index 17adf4f..943657f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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"]