prod-api / Dockerfile
samagra44
init commit
2549545
Raw
History Blame Contribute Delete
148 Bytes
FROM python:3.11
RUN apt-get update && apt-get install -y git
WORKDIR /app
COPY startup.sh .
RUN chmod +x startup.sh
CMD ["bash", "startup.sh"]