Files
rendercv/Dockerfile
2024-12-25 15:58:00 -05:00

13 lines
251 B
Docker

# Use the official Python image as a base
FROM python:3.12-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"]