fix: Install openssl into docker image
All checks were successful
Build Docker / Build Image (push) Successful in 40s

This commit is contained in:
Nathan Woodburn 2025-02-01 17:26:11 +11:00
parent 3db0ba46d0
commit 2e743528d4
Signed by: nathanwoodburn
GPG Key ID: 203B000478AD0EF1

View File

@ -10,7 +10,7 @@ COPY . /app
# Add mount point for data volume
# VOLUME /data
RUN apk add git
RUN apk add git openssl
ENTRYPOINT ["python3"]
CMD ["server.py"]