fix: Add curl to container

This commit is contained in:
2025-05-08 12:47:59 +10:00
parent fd1ba1d059
commit d42dae3263

View File

@@ -10,9 +10,9 @@ COPY . /app
# Add mount point for data volume
# VOLUME /data
RUN apk add git openssl
RUN apk add git openssl curl
ENTRYPOINT ["python3"]
CMD ["server.py"]
FROM builder as dev-envs
FROM builder as dev-envs