mirror of
https://github.com/Tokfinity/InfCode.git
synced 2026-02-12 21:22:46 +00:00
9 lines
312 B
Python
9 lines
312 B
Python
# User image Dockerfile template
|
|
# image_key: instance_image_key corresponding to instance_id
|
|
# apt_packages: split by ' ', load multi packages needed to be installed in ubuntu
|
|
_DOCKERFILE_USER_IMAGE_PY = r"""
|
|
FROM {image_key}
|
|
|
|
RUN apt-get update && apt-get install -y --no-install-recommends {apt_packages}
|
|
"""
|