mirror of
https://github.com/rendercv/rendercv.git
synced 2025-12-23 21:47:55 -05:00
13 lines
251 B
Docker
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"]
|
|
|