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

This commit is contained in:
Nathan Woodburn 2023-11-09 22:32:50 +11:00
parent f2fff2b9fc
commit 21a54657bb
Signed by: nathanwoodburn
GPG Key ID: 203B000478AD0EF1

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"]