fix: Install openssl inside container
All checks were successful
Build Docker / Build Image (push) Successful in 22s

This commit is contained in:
2023-11-09 22:32:50 +11:00
parent f2fff2b9fc
commit 21a54657bb

View File

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