1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
FROM public.ecr.aws/primaassicurazioni/rust:1.83.0 USER root WORKDIR /code RUN mkdir -p /code/target && \ chown -R app:app /code/target COPY entrypoint /code/entrypoint VOLUME /code/target USER app ENTRYPOINT ["./entrypoint"]