badalsahani's picture
feat: chroma initial deploy
287a0bc
raw
history blame contribute delete
180 Bytes
FROM python:3.10-alpine AS base-action
RUN pip3 install -U setuptools pip bandit
COPY entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh
ENTRYPOINT ["sh","/entrypoint.sh"]