Files
rendercv/Dockerfile
2024-12-25 17:25:55 -05:00

13 lines
251 B
Docker

# Use the official Python image as a base
FROM python:3.13-slim
# Install RenderCV:
RUN pip install rendercv
# Create a directory for the app
WORKDIR /rendercv
# Set the entrypoint to /bin/sh instead of Python
ENTRYPOINT ["/bin/bash"]